Re: [OE-core] [PATCH] Add new IMAGE_CLASSES variable for classes for image generation

2011-11-02 Thread McClintock Matthew-B29882
On Tue, Nov 1, 2011 at 7:56 PM, Saul Wold wrote: > Right I understood that part from before I think.  But why can't you have > > IMAGE_CLASSES ?= "image_types" > > and then in the local.conf override that with > > IMAGE_CLASSES = "image_types_uboot" > > since image_types_uboot inherits image_types

Re: [OE-core] [PATCH] Add new IMAGE_CLASSES variable for classes for image generation

2011-11-01 Thread Saul Wold
On 11/01/2011 05:50 PM, McClintock Matthew-B29882 wrote: On Tue, Nov 1, 2011 at 7:31 PM, Saul Wold wrote: +# 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_CLA

Re: [OE-core] [PATCH] Add new IMAGE_CLASSES variable for classes for image generation

2011-11-01 Thread McClintock Matthew-B29882
On Tue, Nov 1, 2011 at 7:50 PM, McClintock Matthew-B29882 wrote: > IMAGE_CLASSES += "image_types_uboot" and leave the other bit as is... Except it seems I have to do this: IMAGE_CLASSES_append = " image_types_uboot" if I want the value to actually be appended. -M _

Re: [OE-core] [PATCH] Add new IMAGE_CLASSES variable for classes for image generation

2011-11-01 Thread McClintock Matthew-B29882
On Tue, Nov 1, 2011 at 7:31 PM, Saul Wold wrote: >> +# 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" >> + >>  # >>

Re: [OE-core] [PATCH] Add new IMAGE_CLASSES variable for classes for image generation

2011-11-01 Thread Saul Wold
On 10/28/2011 12:26 AM, Matthew McClintock wrote: Allows us to import classes only for images and not to the global namespace Signed-off-by: Matthew McClintock --- This is a resend meta-yocto/conf/local.conf.sample |6 ++ meta/classes/image.bbclass|3 ++- 2 files changed

[OE-core] [PATCH] Add new IMAGE_CLASSES variable for classes for image generation

2011-10-28 Thread Matthew McClintock
Allows us to import classes only for images and not to the global namespace Signed-off-by: Matthew McClintock --- This is a resend meta-yocto/conf/local.conf.sample |6 ++ meta/classes/image.bbclass|3 ++- 2 files changed, 8 insertions(+), 1 deletions(-) diff --git a/meta-y