[oe-commits] Matthew McClintock : Add new IMAGE_CLASSES variable for classes for image generation

git at git.openembedded.org git at git.openembedded.org
Tue Nov 8 21:45:08 UTC 2011


Module: openembedded-core.git
Branch: master
Commit: 49dcb301ab39327554d86d23cf6f8d435d7a7351
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=49dcb301ab39327554d86d23cf6f8d435d7a7351

Author: Matthew McClintock <msm at freescale.com>
Date:   Mon Nov  7 13:20:04 2011 -0600

Add new IMAGE_CLASSES variable for classes for image generation

Allows us to import classes only for images and not to the global
namespace

Signed-off-by: Matthew McClintock <msm at freescale.com>

---

 meta/classes/image.bbclass           |    3 ++-
 meta/conf/local.conf.sample.extended |    6 ++++++
 2 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 48b78da..14726d2 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -109,7 +109,8 @@ def get_devtable_list(d):
         str += " %s" % bb.which(bb.data.getVar('BBPATH', d, 1), devtable)
     return str
 
-inherit image_types
+IMAGE_CLASSES ?= "image_types"
+inherit ${IMAGE_CLASSES}
 
 IMAGE_POSTPROCESS_COMMAND ?= ""
 MACHINE_POSTPROCESS_COMMAND ?= ""
diff --git a/meta/conf/local.conf.sample.extended b/meta/conf/local.conf.sample.extended
index 0c3197d..e9935ce 100644
--- a/meta/conf/local.conf.sample.extended
+++ b/meta/conf/local.conf.sample.extended
@@ -114,3 +114,9 @@
 # The network based PR service host and port
 #PRSERV_HOST = "localhost"
 #PRSERV_PORT = "8585"
+
+# Additional image generation features
+#
+# The following is a list of classes to import to use in the generation of images
+# currently an example class is image_types_uboot
+# IMAGE_CLASSES = " image_types_uboot"





More information about the Openembedded-commits mailing list