From 381dcdc29146ffeca769f7697063295112138893 Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Wed, 4 Dec 2024 08:22:28 +0000 Subject: [PATCH] layer.conf: increase BBFILE_PRIORITY to 6 This gets us slightly more deterministic behaviour since most layers, inclusing OE-core, set it to 5. When priorities are equal, the ordering in BBLAYERS is used to resolve conflicts. Since this layer was at '5', getting the ordering wrong would negate .bbappends and shadowed recipes. Upstream bitbake wants to phase this out, but for the time being, let's decrease the opportunities for users to get this wrong. Fixes: https://github.com/quic-yocto/meta-qcom-hwe/issues/98 Signed-off-by: Koen Kooi --- conf/layer.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/layer.conf b/conf/layer.conf index 2e65d255..3ca0b608 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -7,7 +7,7 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ BBFILE_COLLECTIONS += "qcom-hwe" BBFILE_PATTERN_qcom-hwe = "^${LAYERDIR}/" -BBFILE_PRIORITY_qcom-hwe = "5" +BBFILE_PRIORITY_qcom-hwe = "6" LAYERDEPENDS_qcom-hwe = "core qcom" LAYERSERIES_COMPAT_qcom-hwe = "styhead walnascar"