diff options
author | Kang Kai <kai.kang@windriver.com> | 2012-08-28 10:47:21 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-07 12:10:40 +0100 |
commit | 15abf2571ceca8634580538b8635487dbc7c0dd5 (patch) | |
tree | 7c6db5d84e7ad4b74c6aa4f85075fe9f858c0fd7 /meta/classes | |
parent | 1bb35c966eaba6ac931c3aff992a05c31ddf4c32 (diff) | |
download | poky-15abf2571ceca8634580538b8635487dbc7c0dd5.tar.gz |
image_types.bbclass: add variable for Hob
Add a new variable "IMAGE_EXTENSION_live" for Hob to map image type
"live" with real image file extension names.
This is for Hob to remove the hard-coded maps.
(From OE-Core rev: fe0973df7c72b1acec7feae03a4e13c1f49c8b1f)
Signed-off-by: Kang Kai <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/image_types.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass index d286eeaea9..6f8514ff5b 100644 --- a/meta/classes/image_types.bbclass +++ b/meta/classes/image_types.bbclass | |||
@@ -247,3 +247,6 @@ RUNNABLE_IMAGE_TYPES ?= "ext2 ext3" | |||
247 | RUNNABLE_MACHINE_PATTERNS ?= "qemu" | 247 | RUNNABLE_MACHINE_PATTERNS ?= "qemu" |
248 | 248 | ||
249 | DEPLOYABLE_IMAGE_TYPES ?= "hddimg iso" | 249 | DEPLOYABLE_IMAGE_TYPES ?= "hddimg iso" |
250 | |||
251 | # Use IMAGE_EXTENSION_xxx to map image type 'xxx' with real image file extension name(s) for Hob | ||
252 | IMAGE_EXTENSION_live = "hddimg iso" | ||