summaryrefslogtreecommitdiffstats
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:38:21 +0100
commit4460e6de04844c4060f1fe87c8a4b247b731c63e (patch)
tree14882baaab1f10ffefb973d04d412c559bfbfb65
parentba14fb2df8793aae5d671a408c2ba2145a1a7284 (diff)
downloadbitbake-1.26.0.tar.gz
bin/image-writer: Add ext4 as a deployable image typeyocto-1.82015-04-fido1.26.0
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] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xbin/image-writer2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/image-writer b/bin/image-writer
index 86c38b576..7d7116780 100755
--- a/bin/image-writer
+++ b/bin/image-writer
@@ -34,7 +34,7 @@ from bb.ui.crumbs.hig.deployimagedialog import DeployImageDialog
from bb.ui.crumbs.hig.imageselectiondialog import ImageSelectionDialog
# I put all the fs bitbake supported here. Need more test.
-DEPLOYABLE_IMAGE_TYPES = ["jffs2", "cramfs", "ext2", "ext3", "btrfs", "squashfs", "ubi", "vmdk"]
+DEPLOYABLE_IMAGE_TYPES = ["jffs2", "cramfs", "ext2", "ext3", "ext4", "btrfs", "squashfs", "ubi", "vmdk"]
Title = "USB Image Writer"
class DeployWindow(gtk.Window):