mirror of
https://git.yoctoproject.org/meta-security
synced 2026-01-11 15:00:34 +00:00
Also update libhtp to required version 0.5.52.
See suricata release notes for more details about changes and
CVEs fixed:
https://suricata.io/2024/02/08/suricata-7-0-3-and-6-0-16-released/
https://suricata.io/2024/03/19/suricata-7-0-4-and-6-0-17-released/
https://suricata.io/2024/04/23/suricata-7-0-5-and-6-0-19-released/
https://suricata.io/2024/06/27/suricata-7-0-6-and-6-0-20-released/
https://suricata.io/2024/10/01/suricata-7-0-7-released/
https://suricata.io/2024/12/12/suricata-7-0-8-released/
https://suricata.io/2025/03/18/suricata-7-0-9-released/
https://suricata.io/2025/07/08/suricata-7-0-11-released/
https://suricata.io/2025/09/16/suricata-8-0-1-and-7-0-12-released/
Obsolete CVE patches removed.
Signed-off-by: Clayton Casciato <majortomtosourcecontrol@gmail.com>
(cherry picked from commit fbb8343cf8)
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
41 lines
1.4 KiB
Diff
41 lines
1.4 KiB
Diff
From a59708a9300df8116867ac77f7829f7fd647325e Mon Sep 17 00:00:00 2001
|
|
From: Clayton Casciato <ccasciato@21sw.us>
|
|
Date: Mon, 3 Nov 2025 10:30:26 -0700
|
|
Subject: [PATCH] Skip pkg Makefile from using its own rust steps
|
|
|
|
Upstream-Status: Inappropriate [OE Specific]
|
|
|
|
Signed-off-by: Armin Kuster <akuster808@gmail.com>
|
|
Signed-off-by: Clayton Casciato <majortomtosourcecontrol@gmail.com>
|
|
---
|
|
Makefile.am | 2 +-
|
|
Makefile.in | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/Makefile.am b/Makefile.am
|
|
index d0d3d09..a572912 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -10,7 +10,7 @@ EXTRA_DIST = ChangeLog COPYING LICENSE suricata.yaml.in \
|
|
scripts/generate-images.sh \
|
|
scripts/docs-almalinux9-minimal-build.sh \
|
|
scripts/docs-ubuntu-debian-minimal-build.sh
|
|
-SUBDIRS = $(HTP_DIR) rust src qa rules doc contrib etc python ebpf \
|
|
+SUBDIRS = $(HTP_DIR) src qa rules doc contrib etc python ebpf \
|
|
$(SURICATA_UPDATE_DIR)
|
|
|
|
CLEANFILES = stamp-h[0-9]*
|
|
diff --git a/Makefile.in b/Makefile.in
|
|
index 7a89353..3864613 100644
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -428,7 +428,7 @@ EXTRA_DIST = ChangeLog COPYING LICENSE suricata.yaml.in \
|
|
scripts/docs-almalinux9-minimal-build.sh \
|
|
scripts/docs-ubuntu-debian-minimal-build.sh
|
|
|
|
-SUBDIRS = $(HTP_DIR) rust src qa rules doc contrib etc python ebpf \
|
|
+SUBDIRS = $(HTP_DIR) src qa rules doc contrib etc python ebpf \
|
|
$(SURICATA_UPDATE_DIR)
|
|
|
|
CLEANFILES = stamp-h[0-9]*
|