From 6f0a78e04b2bf95e7a694df0f8efb124579d2311 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 12 Aug 2024 11:31:11 +0100 Subject: [PATCH] bitbake.conf: Include cve-check-map earlier, before distro It makes sense for the distro to be able to override "policy" from cve-check-map which is intented to provide defaults. Tweak the ordering to allow for this, ensuring it is included before the distro includes. (From OE-Core rev: fb22a7e7ee38a0e923e86a68d0e9b86d479f264d) Signed-off-by: Richard Purdie --- meta/conf/bitbake.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index c09c0a7d52..1acb56433c 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -829,12 +829,12 @@ include conf/local.conf require conf/multiconfig/${BB_CURRENT_MC}.conf include conf/machine/${MACHINE}.conf include conf/machine-sdk/${SDKMACHINE}.conf +require conf/cve-check-map.conf include conf/distro/${DISTRO}.conf include conf/distro/defaultsetup.conf include conf/documentation.conf include conf/licenses.conf require conf/sanity.conf -require conf/cve-check-map.conf include conf/bblock.conf ##################################################################