summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes-recipe/core-image.bbclass4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes-recipe/core-image.bbclass b/meta/classes-recipe/core-image.bbclass
index 4b5f2c99c4..90d9eb9d3f 100644
--- a/meta/classes-recipe/core-image.bbclass
+++ b/meta/classes-recipe/core-image.bbclass
@@ -62,6 +62,10 @@ FEATURE_PACKAGES_hwcodecs = "${MACHINE_HWCODECS}"
62# IMAGE_FEATURES_REPLACES_foo = 'bar1 bar2' 62# IMAGE_FEATURES_REPLACES_foo = 'bar1 bar2'
63# Including image feature foo would replace the image features bar1 and bar2 63# Including image feature foo would replace the image features bar1 and bar2
64IMAGE_FEATURES_REPLACES_ssh-server-openssh = "ssh-server-dropbear" 64IMAGE_FEATURES_REPLACES_ssh-server-openssh = "ssh-server-dropbear"
65# Do not install openssh complementary packages if either packagegroup-core-ssh-dropbear or dropbear
66# is installed # to avoid openssh-dropbear conflict
67# see [Yocto #14858] for more information
68PACKAGE_EXCLUDE_COMPLEMENTARY:append = "${@bb.utils.contains_any('PACKAGE_INSTALL', 'packagegroup-core-ssh-dropbear dropbear', 'openssh', '' , d)}"
65 69
66# IMAGE_FEATURES_CONFLICTS_foo = 'bar1 bar2' 70# IMAGE_FEATURES_CONFLICTS_foo = 'bar1 bar2'
67# An error exception would be raised if both image features foo and bar1(or bar2) are included 71# An error exception would be raised if both image features foo and bar1(or bar2) are included