diff options
author | Lianhao Lu <lianhao.lu@intel.com> | 2012-07-03 12:43:32 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-03 14:55:01 +0100 |
commit | 286b2666dc109ef467ea040be8abc0039d53ace6 (patch) | |
tree | 631b0b49e04f555a8069fbfd901f0769f4a50e5f /meta/recipes-sato | |
parent | 6121186ff9b1577b304bc237caa80e4207d04470 (diff) | |
download | poky-286b2666dc109ef467ea040be8abc0039d53ace6.tar.gz |
image/core-image: Handle conflicting IMAGE_FEATURES.
IMAGE_FEATURES such as 'ssh-server-dropbear' and 'ssh-server-openssh'
can't be both enabled. User can use the following variables to define
the relationship of image features:
IMAGE_FEATURES_REPLACES_foo = "bar" means including image feature "foo"
would replace the image feature "bar".
IMAGE_FEATURES_CONFLICTS_foo = "bar" means including both image features
"foo" and "bar" would cause an parsing error.
(From OE-Core rev: e36d12a9c1cf69540079e48a1dfadbc343758e48)
Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato')
-rw-r--r-- | meta/recipes-sato/images/core-image-sato-sdk.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-sato/images/core-image-sato-sdk.bb b/meta/recipes-sato/images/core-image-sato-sdk.bb index 75ed64fd6b..39742efadb 100644 --- a/meta/recipes-sato/images/core-image-sato-sdk.bb +++ b/meta/recipes-sato/images/core-image-sato-sdk.bb | |||
@@ -8,6 +8,8 @@ form a standalone SDK." | |||
8 | IMAGE_FEATURES += "apps-console-core ${SATO_IMAGE_FEATURES} dev-pkgs tools-sdk qt4-pkgs" | 8 | IMAGE_FEATURES += "apps-console-core ${SATO_IMAGE_FEATURES} dev-pkgs tools-sdk qt4-pkgs" |
9 | EXTRA_IMAGE_FEATURES += "tools-debug tools-profile tools-testapps debug-tweaks" | 9 | EXTRA_IMAGE_FEATURES += "tools-debug tools-profile tools-testapps debug-tweaks" |
10 | 10 | ||
11 | SSHSERVER_IMAGE_FEATURES = "ssh-server-openssh" | ||
12 | |||
11 | LICENSE = "MIT" | 13 | LICENSE = "MIT" |
12 | 14 | ||
13 | inherit core-image | 15 | inherit core-image |