diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2012-03-24 10:31:14 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-26 12:13:05 +0100 |
commit | 5b86fb09c57d738bc4dde3e7ca6f11aafe0ccc3c (patch) | |
tree | 2d5dc9b7ea379f02aa68abe096450c8be70e7b5e /meta | |
parent | 951aa5ea1f1e23460bb3607e5442a2a2bc499e6f (diff) | |
download | poky-5b86fb09c57d738bc4dde3e7ca6f11aafe0ccc3c.tar.gz |
image_types.bbclass: Define runnable and deployable pattern
Define runnable image type and machine pattern.
Define deployable image type.
(From OE-Core rev: 602a0aede00ec961ffb008619cc8f6ee4ae51f58)
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/image_types.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass index e92f519078..3aa3f17450 100644 --- a/meta/classes/image_types.bbclass +++ b/meta/classes/image_types.bbclass | |||
@@ -220,3 +220,7 @@ COMPRESS_DEPENDS_gz = "" | |||
220 | COMPRESS_DEPENDS_bz2 = "" | 220 | COMPRESS_DEPENDS_bz2 = "" |
221 | COMPRESS_DEPENDS_xz = "xz-native" | 221 | COMPRESS_DEPENDS_xz = "xz-native" |
222 | 222 | ||
223 | RUNNABLE_IMAGE_TYPES ?= "ext2 ext3" | ||
224 | RUNNABLE_MACHINE_PATTERNS ?= "qemu" | ||
225 | |||
226 | DEPLOYABLE_IMAGE_TYPES ?= "hddimg iso" | ||