diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-31 22:35:27 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-31 22:38:09 +0100 |
commit | a1431b1b85bf90ed5f771552d0ce91de288047d4 (patch) | |
tree | 841cf82db288555e1a0793bac7efa843899768b5 /bin | |
parent | f980f060cd0d1e7fe5011f3c325c1b254f05eccf (diff) | |
download | bitbake-a1431b1b85bf90ed5f771552d0ce91de288047d4.zip |
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]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/image-writer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/image-writer b/bin/image-writer index 86c38b57..7d711678 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): |