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:39:21 +0100 |
commit | fe9c5b1ba9f95e2321093eea1211bf5655eb6966 (patch) | |
tree | 7b78c3651f6d61d35dc29f059e7821a39c2aae6f | |
parent | 3cb87724a5b21550e99c18e97b665d6604bb2fa9 (diff) | |
download | poky-fe9c5b1ba9f95e2321093eea1211bf5655eb6966.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: a1431b1b85bf90ed5f771552d0ce91de288047d4)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | bitbake/bin/image-writer | 2 |
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 | |||
34 | from bb.ui.crumbs.hig.imageselectiondialog import ImageSelectionDialog | 34 | from 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. |
37 | DEPLOYABLE_IMAGE_TYPES = ["jffs2", "cramfs", "ext2", "ext3", "btrfs", "squashfs", "ubi", "vmdk"] | 37 | DEPLOYABLE_IMAGE_TYPES = ["jffs2", "cramfs", "ext2", "ext3", "ext4", "btrfs", "squashfs", "ubi", "vmdk"] |
38 | Title = "USB Image Writer" | 38 | Title = "USB Image Writer" |
39 | 39 | ||
40 | class DeployWindow(gtk.Window): | 40 | class DeployWindow(gtk.Window): |