diff options
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/hobwidget.py')
| -rw-r--r-- | bitbake/lib/bb/ui/crumbs/hobwidget.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py index 664bf25560..9afbfdbe96 100644 --- a/bitbake/lib/bb/ui/crumbs/hobwidget.py +++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py | |||
| @@ -50,6 +50,33 @@ class hic: | |||
| 50 | ICON_INDI_CONFIRM_FILE = os.path.join(HOB_ICON_BASE_DIR, ('indicators/confirmation.png')) | 50 | ICON_INDI_CONFIRM_FILE = os.path.join(HOB_ICON_BASE_DIR, ('indicators/confirmation.png')) |
| 51 | ICON_INDI_ERROR_FILE = os.path.join(HOB_ICON_BASE_DIR, ('indicators/error.png')) | 51 | ICON_INDI_ERROR_FILE = os.path.join(HOB_ICON_BASE_DIR, ('indicators/error.png')) |
| 52 | 52 | ||
| 53 | class hcc: | ||
| 54 | |||
| 55 | SUPPORTED_IMAGE_TYPES = { | ||
| 56 | "jffs2" : ["jffs2"], | ||
| 57 | "sum.jffs2" : ["sum.jffs2"], | ||
| 58 | "cramfs" : ["cramfs"], | ||
| 59 | "ext2" : ["ext2"], | ||
| 60 | "ext2.gz" : ["ext2.gz"], | ||
| 61 | "ext2.bz2" : ["ext2.bz2"], | ||
| 62 | "ext3" : ["ext3"], | ||
| 63 | "ext3.gz" : ["ext3.gz"], | ||
| 64 | "ext2.lzma" : ["ext2.lzma"], | ||
| 65 | "btrfs" : ["btrfs"], | ||
| 66 | "live" : ["hddimg", "iso"], | ||
| 67 | "squashfs" : ["squashfs"], | ||
| 68 | "squashfs-lzma" : ["squashfs-lzma"], | ||
| 69 | "ubi" : ["ubi"], | ||
| 70 | "tar" : ["tar"], | ||
| 71 | "tar.gz" : ["tar.gz"], | ||
| 72 | "tar.bz2" : ["tar.bz2"], | ||
| 73 | "tar.xz" : ["tar.xz"], | ||
| 74 | "cpio" : ["cpio"], | ||
| 75 | "cpio.gz" : ["cpio.gz"], | ||
| 76 | "cpio.xz" : ["cpio.xz"], | ||
| 77 | "cpio.lzma" : ["cpio.lzma"], | ||
| 78 | } | ||
| 79 | |||
| 53 | class HobViewTable (gtk.VBox): | 80 | class HobViewTable (gtk.VBox): |
| 54 | """ | 81 | """ |
| 55 | A VBox to contain the table for different recipe views and package view | 82 | A VBox to contain the table for different recipe views and package view |
