summaryrefslogtreecommitdiffstats
path: root/meta/classes/image_types.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-31 22:33:53 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-31 22:39:20 +0100
commit764fbeaafe64cea32f9da98848f01d8c1a71fc33 (patch)
treed183408c1ce738201993eab060b9c9e45789467b /meta/classes/image_types.bbclass
parentce2573b96a165f6c8029632c19786efd658c75a2 (diff)
downloadpoky-764fbeaafe64cea32f9da98848f01d8c1a71fc33.tar.gz
image_types: Add missing ext4 support
This is particularly problematic since qemu images switched to ext4 by default and now cannot work properly with UIs like hob. This patch adds in ext4 to the appropriate IMAGE* variables fixing this. [YOCTO #7426] (From OE-Core rev: e6aab245623b6ba1ca5f06632d1028c863cef737) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image_types.bbclass')
-rw-r--r--meta/classes/image_types.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass
index 98a08bf107..72c7337b6b 100644
--- a/meta/classes/image_types.bbclass
+++ b/meta/classes/image_types.bbclass
@@ -146,6 +146,7 @@ IMAGE_TYPES = " \
146 cramfs \ 146 cramfs \
147 ext2 ext2.gz ext2.bz2 ext2.lzma \ 147 ext2 ext2.gz ext2.bz2 ext2.lzma \
148 ext3 ext3.gz \ 148 ext3 ext3.gz \
149 ext4 ext4.gz \
149 btrfs \ 150 btrfs \
150 iso \ 151 iso \
151 hddimg \ 152 hddimg \
@@ -171,7 +172,7 @@ COMPRESS_DEPENDS_xz = "xz-native"
171COMPRESS_DEPENDS_lz4 = "lz4-native" 172COMPRESS_DEPENDS_lz4 = "lz4-native"
172COMPRESS_DEPENDS_sum = "mtd-utils-native" 173COMPRESS_DEPENDS_sum = "mtd-utils-native"
173 174
174RUNNABLE_IMAGE_TYPES ?= "ext2 ext3" 175RUNNABLE_IMAGE_TYPES ?= "ext2 ext3 ext4"
175RUNNABLE_MACHINE_PATTERNS ?= "qemu" 176RUNNABLE_MACHINE_PATTERNS ?= "qemu"
176 177
177DEPLOYABLE_IMAGE_TYPES ?= "hddimg iso" 178DEPLOYABLE_IMAGE_TYPES ?= "hddimg iso"