mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
bitbake: hob2: remove class hcc
Because class hcc is useless, remove it. (Bitbake rev: 08d4a0f76542e05755c298b3875ea373e5512e13) Signed-off-by: Kang Kai <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -34,7 +34,7 @@ from bb.ui.crumbs.recipeselectionpage import RecipeSelectionPage
|
|||||||
from bb.ui.crumbs.packageselectionpage import PackageSelectionPage
|
from bb.ui.crumbs.packageselectionpage import PackageSelectionPage
|
||||||
from bb.ui.crumbs.builddetailspage import BuildDetailsPage
|
from bb.ui.crumbs.builddetailspage import BuildDetailsPage
|
||||||
from bb.ui.crumbs.imagedetailspage import ImageDetailsPage
|
from bb.ui.crumbs.imagedetailspage import ImageDetailsPage
|
||||||
from bb.ui.crumbs.hobwidget import hwc, HobButton, HobAltButton, hcc
|
from bb.ui.crumbs.hobwidget import hwc, HobButton, HobAltButton
|
||||||
from bb.ui.crumbs.hig import CrumbsMessageDialog, ImageSelectionDialog, \
|
from bb.ui.crumbs.hig import CrumbsMessageDialog, ImageSelectionDialog, \
|
||||||
AdvancedSettingDialog, LayerSelectionDialog, \
|
AdvancedSettingDialog, LayerSelectionDialog, \
|
||||||
DeployImageDialog
|
DeployImageDialog
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ import shlex
|
|||||||
import subprocess
|
import subprocess
|
||||||
import tempfile
|
import tempfile
|
||||||
from bb.ui.crumbs.hobcolor import HobColors
|
from bb.ui.crumbs.hobcolor import HobColors
|
||||||
from bb.ui.crumbs.hobwidget import hcc, hic, HobViewTable, HobInfoButton, HobButton, HobAltButton, HobIconChecker
|
from bb.ui.crumbs.hobwidget import hic, HobViewTable, HobInfoButton, HobButton, HobAltButton, HobIconChecker
|
||||||
from bb.ui.crumbs.progressbar import HobProgressBar
|
from bb.ui.crumbs.progressbar import HobProgressBar
|
||||||
import bb.ui.crumbs.utils
|
import bb.ui.crumbs.utils
|
||||||
import bb.process
|
import bb.process
|
||||||
|
|||||||
@@ -22,7 +22,6 @@
|
|||||||
import gobject
|
import gobject
|
||||||
import logging
|
import logging
|
||||||
from bb.ui.crumbs.runningbuild import RunningBuild
|
from bb.ui.crumbs.runningbuild import RunningBuild
|
||||||
from bb.ui.crumbs.hobwidget import hcc
|
|
||||||
|
|
||||||
class HobHandler(gobject.GObject):
|
class HobHandler(gobject.GObject):
|
||||||
|
|
||||||
|
|||||||
@@ -63,35 +63,6 @@ class hic:
|
|||||||
ICON_INDI_TICK_FILE = os.path.join(HOB_ICON_BASE_DIR, ('indicators/tick.png'))
|
ICON_INDI_TICK_FILE = os.path.join(HOB_ICON_BASE_DIR, ('indicators/tick.png'))
|
||||||
ICON_INDI_INFO_FILE = os.path.join(HOB_ICON_BASE_DIR, ('indicators/info.png'))
|
ICON_INDI_INFO_FILE = os.path.join(HOB_ICON_BASE_DIR, ('indicators/info.png'))
|
||||||
|
|
||||||
class hcc:
|
|
||||||
|
|
||||||
SUPPORTED_IMAGE_TYPES = {
|
|
||||||
"jffs2" : ["jffs2"],
|
|
||||||
"sum.jffs2" : ["sum.jffs2"],
|
|
||||||
"cramfs" : ["cramfs"],
|
|
||||||
"ext2" : ["ext2"],
|
|
||||||
"ext2.gz" : ["ext2.gz"],
|
|
||||||
"ext2.bz2" : ["ext2.bz2"],
|
|
||||||
"ext3" : ["ext3"],
|
|
||||||
"ext3.gz" : ["ext3.gz"],
|
|
||||||
"ext2.lzma" : ["ext2.lzma"],
|
|
||||||
"btrfs" : ["btrfs"],
|
|
||||||
"live" : ["hddimg", "iso"],
|
|
||||||
"squashfs" : ["squashfs"],
|
|
||||||
"squashfs-lzma" : ["squashfs-lzma"],
|
|
||||||
"ubi" : ["ubi"],
|
|
||||||
"tar" : ["tar"],
|
|
||||||
"tar.gz" : ["tar.gz"],
|
|
||||||
"tar.bz2" : ["tar.bz2"],
|
|
||||||
"tar.xz" : ["tar.xz"],
|
|
||||||
"cpio" : ["cpio"],
|
|
||||||
"cpio.gz" : ["cpio.gz"],
|
|
||||||
"cpio.xz" : ["cpio.xz"],
|
|
||||||
"vmdk" : ["vmdk"],
|
|
||||||
"cpio.lzma" : ["cpio.lzma"],
|
|
||||||
"elf" : ["elf"],
|
|
||||||
}
|
|
||||||
|
|
||||||
class HobViewTable (gtk.VBox):
|
class HobViewTable (gtk.VBox):
|
||||||
"""
|
"""
|
||||||
A VBox to contain the table for different recipe views and package view
|
A VBox to contain the table for different recipe views and package view
|
||||||
|
|||||||
Reference in New Issue
Block a user