From 0206e0ccef7fc45feb871e8d8f5918d75fa435f6 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 12 Sep 2013 19:19:10 -0700 Subject: [PATCH] angstrom-core-tweaks: Turn weaker assignment for EXTRA_IMAGE_FEATURES into a bit stronger Right now angstrom images dont get the opkg metadata into images as a result default opkg operations on say systemd-image return nop. This started to happen after OE-Core commit b2cc92595b30d96a79f33ea7a7217834c8b6bff7 where bitbake.conf now has EXTRA_IMAGE_FEATURES ??= "" that will override the angstrom definition which is what we dont want. So lets make the angstrom define to be ?= Signed-off-by: Khem Raj --- conf/distro/include/angstrom-core-tweaks.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/distro/include/angstrom-core-tweaks.inc b/conf/distro/include/angstrom-core-tweaks.inc index 9b8458e..8c8bc8a 100644 --- a/conf/distro/include/angstrom-core-tweaks.inc +++ b/conf/distro/include/angstrom-core-tweaks.inc @@ -33,7 +33,7 @@ MACHINEOVERRIDES[vardepsexclude] += "SOC_FAMILY" # opkg PREFERRED_PROVIDER_opkg-collateral = "angstrom-feed-configs" -EXTRA_IMAGE_FEATURES ??= "package-management" +EXTRA_IMAGE_FEATURES ?= "package-management" # Prefer libjpeg-turbo PREFERRED_PROVIDER_jpeg = "libjpeg-turbo"