From aa47ba52f0b961b15ea444ad04ce1bd0209b7ff2 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 31 Mar 2015 22:35:27 +0100 Subject: 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 --- bitbake/bin/image-writer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake') 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 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): -- cgit v1.2.3-54-g00ecf