summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-31 22:35:27 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-31 22:39:30 +0100
commitaa47ba52f0b961b15ea444ad04ce1bd0209b7ff2 (patch)
treedac1f9308a0a020668d1453abc1c9c71bf69b558 /bitbake
parent00b2c3a5e47c6b37058a85238c570cf7d126f733 (diff)
downloadpoky-aa47ba52f0b961b15ea444ad04ce1bd0209b7ff2.tar.gz
bitbake: bin/image-writer: Add ext4 as a deployable image type
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 variable fixing this. [YOCTO #7426] (Bitbake rev: 4460e6de04844c4060f1fe87c8a4b247b731c63e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/bin/image-writer2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/image-writer b/bitbake/bin/image-writer
index 86c38b5769..7d7116780b 100755
--- a/bitbake/bin/image-writer
+++ b/bitbake/bin/image-writer
@@ -34,7 +34,7 @@ from bb.ui.crumbs.hig.deployimagedialog import DeployImageDialog
34from bb.ui.crumbs.hig.imageselectiondialog import ImageSelectionDialog 34from bb.ui.crumbs.hig.imageselectiondialog import ImageSelectionDialog
35 35
36# I put all the fs bitbake supported here. Need more test. 36# I put all the fs bitbake supported here. Need more test.
37DEPLOYABLE_IMAGE_TYPES = ["jffs2", "cramfs", "ext2", "ext3", "btrfs", "squashfs", "ubi", "vmdk"] 37DEPLOYABLE_IMAGE_TYPES = ["jffs2", "cramfs", "ext2", "ext3", "ext4", "btrfs", "squashfs", "ubi", "vmdk"]
38Title = "USB Image Writer" 38Title = "USB Image Writer"
39 39
40class DeployWindow(gtk.Window): 40class DeployWindow(gtk.Window):