* core-image-*.bb: Remove usage of EXTRA_IMAGE_FEATURES from some .bb files
@ 2012-07-09 17:12 Robert P. J. Day
2012-07-10 18:05 ` Saul Wold
0 siblings, 1 reply; 2+ messages in thread
From: Robert P. J. Day @ 2012-07-09 17:12 UTC (permalink / raw)
To: OE Core mailing list
Replace the usage of EXTRA_IMAGE_FEATURES in a small number of .bb
files with IMAGE_FEATURES, and leave the use of EXTRA_IMAGE_FEATURES
for developers in their local.conf files, to avoid the possibility of
undesirable side effects.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
---
i *think* this should do it ...
diff --git a/meta/recipes-extended/images/core-image-lsb-sdk.bb b/meta/recipes-extended/images/core-image-lsb-sdk.bb
index 047d66b..7601410 100644
--- a/meta/recipes-extended/images/core-image-lsb-sdk.bb
+++ b/meta/recipes-extended/images/core-image-lsb-sdk.bb
@@ -2,8 +2,8 @@ DESCRIPTION = "Basic image without X support suitable for Linux Standard Base \
(LSB) implementations. It includes the full meta-toolchain, plus development \
headers and libraries to form a standalone SDK."
-IMAGE_FEATURES += "apps-console-core tools-sdk dev-pkgs ssh-server-openssh"
-EXTRA_IMAGE_FEATURES = "tools-debug tools-profile tools-testapps debug-tweaks"
+IMAGE_FEATURES += "apps-console-core tools-sdk dev-pkgs ssh-server-openssh \
+ tools-debug tools-profile tools-testapps debug-tweaks"
IMAGE_INSTALL = "\
diff --git a/meta/recipes-rt/images/core-image-rt-sdk.bb b/meta/recipes-rt/images/core-image-rt-sdk.bb
index 29512e3..e89b574 100644
--- a/meta/recipes-rt/images/core-image-rt-sdk.bb
+++ b/meta/recipes-rt/images/core-image-rt-sdk.bb
@@ -8,8 +8,7 @@ tools for real-time use. It includes the full meta-toolchain, development \
headers and libraries to form a standalone SDK."
DEPENDS = "linux-yocto-rt"
-IMAGE_FEATURES += "dev-pkgs tools-sdk"
-EXTRA_IMAGE_FEATURES += "tools-debug tools-profile tools-testapps debug-tweaks"
+IMAGE_FEATURES += "dev-pkgs tools-sdk tools-debug tools-profile tools-testapps debug-tweaks"
IMAGE_INSTALL += "rt-tests kernel-dev"
diff --git a/meta/recipes-sato/images/core-image-sato-sdk.bb b/meta/recipes-sato/images/core-image-sato-sdk.bb
index 39742ef..733ef7f 100644
--- a/meta/recipes-sato/images/core-image-sato-sdk.bb
+++ b/meta/recipes-sato/images/core-image-sato-sdk.bb
@@ -5,8 +5,8 @@ DESCRIPTION = "Image with Sato support that includes everything within \
core-image-sato plus meta-toolchain, development headers and libraries to \
form a standalone SDK."
-IMAGE_FEATURES += "apps-console-core ${SATO_IMAGE_FEATURES} dev-pkgs tools-sdk qt4-pkgs"
-EXTRA_IMAGE_FEATURES += "tools-debug tools-profile tools-testapps debug-tweaks"
+IMAGE_FEATURES += "apps-console-core ${SATO_IMAGE_FEATURES} dev-pkgs tools-sdk qt4-pkgs \
+ tools-debug tools-profile tools-testapps debug-tweaks"
SSHSERVER_IMAGE_FEATURES = "ssh-server-openssh"
--
========================================================================
Robert P. J. Day Ottawa, Ontario, CANADA
http://crashcourse.ca
Twitter: http://twitter.com/rpjday
LinkedIn: http://ca.linkedin.com/in/rpjday
========================================================================
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: core-image-*.bb: Remove usage of EXTRA_IMAGE_FEATURES from some .bb files
2012-07-09 17:12 core-image-*.bb: Remove usage of EXTRA_IMAGE_FEATURES from some .bb files Robert P. J. Day
@ 2012-07-10 18:05 ` Saul Wold
0 siblings, 0 replies; 2+ messages in thread
From: Saul Wold @ 2012-07-10 18:05 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On 07/09/2012 10:12 AM, Robert P. J. Day wrote:
>
> Replace the usage of EXTRA_IMAGE_FEATURES in a small number of .bb
> files with IMAGE_FEATURES, and leave the use of EXTRA_IMAGE_FEATURES
> for developers in their local.conf files, to avoid the possibility of
> undesirable side effects.
>
> Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
>
> ---
>
> i *think* this should do it ...
>
> diff --git a/meta/recipes-extended/images/core-image-lsb-sdk.bb b/meta/recipes-extended/images/core-image-lsb-sdk.bb
> index 047d66b..7601410 100644
> --- a/meta/recipes-extended/images/core-image-lsb-sdk.bb
> +++ b/meta/recipes-extended/images/core-image-lsb-sdk.bb
> @@ -2,8 +2,8 @@ DESCRIPTION = "Basic image without X support suitable for Linux Standard Base \
> (LSB) implementations. It includes the full meta-toolchain, plus development \
> headers and libraries to form a standalone SDK."
>
> -IMAGE_FEATURES += "apps-console-core tools-sdk dev-pkgs ssh-server-openssh"
> -EXTRA_IMAGE_FEATURES = "tools-debug tools-profile tools-testapps debug-tweaks"
> +IMAGE_FEATURES += "apps-console-core tools-sdk dev-pkgs ssh-server-openssh \
> + tools-debug tools-profile tools-testapps debug-tweaks"
>
>
> IMAGE_INSTALL = "\
> diff --git a/meta/recipes-rt/images/core-image-rt-sdk.bb b/meta/recipes-rt/images/core-image-rt-sdk.bb
> index 29512e3..e89b574 100644
> --- a/meta/recipes-rt/images/core-image-rt-sdk.bb
> +++ b/meta/recipes-rt/images/core-image-rt-sdk.bb
> @@ -8,8 +8,7 @@ tools for real-time use. It includes the full meta-toolchain, development \
> headers and libraries to form a standalone SDK."
> DEPENDS = "linux-yocto-rt"
>
> -IMAGE_FEATURES += "dev-pkgs tools-sdk"
> -EXTRA_IMAGE_FEATURES += "tools-debug tools-profile tools-testapps debug-tweaks"
> +IMAGE_FEATURES += "dev-pkgs tools-sdk tools-debug tools-profile tools-testapps debug-tweaks"
>
> IMAGE_INSTALL += "rt-tests kernel-dev"
>
> diff --git a/meta/recipes-sato/images/core-image-sato-sdk.bb b/meta/recipes-sato/images/core-image-sato-sdk.bb
> index 39742ef..733ef7f 100644
> --- a/meta/recipes-sato/images/core-image-sato-sdk.bb
> +++ b/meta/recipes-sato/images/core-image-sato-sdk.bb
> @@ -5,8 +5,8 @@ DESCRIPTION = "Image with Sato support that includes everything within \
> core-image-sato plus meta-toolchain, development headers and libraries to \
> form a standalone SDK."
>
> -IMAGE_FEATURES += "apps-console-core ${SATO_IMAGE_FEATURES} dev-pkgs tools-sdk qt4-pkgs"
> -EXTRA_IMAGE_FEATURES += "tools-debug tools-profile tools-testapps debug-tweaks"
> +IMAGE_FEATURES += "apps-console-core ${SATO_IMAGE_FEATURES} dev-pkgs tools-sdk qt4-pkgs \
> + tools-debug tools-profile tools-testapps debug-tweaks"
>
> SSHSERVER_IMAGE_FEATURES = "ssh-server-openssh"
>
>
Merged into OE-Core
Thanks
Sau!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-07-10 18:17 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-09 17:12 core-image-*.bb: Remove usage of EXTRA_IMAGE_FEATURES from some .bb files Robert P. J. Day
2012-07-10 18:05 ` Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox