meta-digi-del: fix IMAGE_FEATURES in del-image-minimal recipes
If we override the variable with '=' instead of '+=' then extra image features set in project's local.conf (EXTRA_IMAGE_FEATURES variable) are discarded. Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
parent
41369cede1
commit
0d146e72e9
|
|
@ -11,13 +11,13 @@ LICENSE = "MIT"
|
||||||
|
|
||||||
inherit core-image
|
inherit core-image
|
||||||
|
|
||||||
IMAGE_FEATURES = "core-ssh-dropbear"
|
IMAGE_FEATURES += "core-ssh-dropbear"
|
||||||
IMAGE_FEATURES += "dev-pkgs"
|
IMAGE_FEATURES += "dev-pkgs"
|
||||||
|
|
||||||
# Adding debug-tweaks will enable empty password login.
|
# Adding debug-tweaks will enable empty password login.
|
||||||
# Note that adding debug-tweaks to EXTRA_IMAGE_FEATURES will not
|
# Note that adding debug-tweaks to EXTRA_IMAGE_FEATURES will not
|
||||||
# allow for empty password logins.
|
# allow for empty password logins.
|
||||||
IMAGE_FEATURES =+ "debug-tweaks"
|
IMAGE_FEATURES += "debug-tweaks"
|
||||||
|
|
||||||
# core-image disables the root password if debug-tweak is not enabled.
|
# core-image disables the root password if debug-tweak is not enabled.
|
||||||
# This override will use the shadow file instead.
|
# This override will use the shadow file instead.
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ inherit del-image
|
||||||
# where they can be customized by platform.
|
# where they can be customized by platform.
|
||||||
|
|
||||||
# Only common features to remain here.
|
# Only common features to remain here.
|
||||||
IMAGE_FEATURES = "ssh-server-dropbear"
|
IMAGE_FEATURES += "ssh-server-dropbear"
|
||||||
IMAGE_FEATURES += "del-network"
|
IMAGE_FEATURES += "del-network"
|
||||||
|
|
||||||
# Machine dependant features
|
# Machine dependant features
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue