summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIoana Grigoropol <ioanax.grigoropol@intel.com>2012-10-03 14:13:18 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-03 17:29:03 +0100
commit334125a98ecb8a938aee4bc530205ad75099361c (patch)
tree008e6e22261a723cab48eb50e9378930f3f1d43d
parent5bc4930c1638db16bcd5f9c8cfc4081f9ffc192b (diff)
downloadbitbake-334125a98ecb8a938aee4bc530205ad75099361c.tar.gz
hob/image_details/run_image: Kernel must be set
- when displaying image details, even if the kernel information is not shown, the kernel value must be set (if dealing with qemu) otherwise running the image will throw an error Signed-off-by: Ioana Grigoropol <ioanax.grigoropol@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xlib/bb/ui/crumbs/imagedetailspage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bb/ui/crumbs/imagedetailspage.py b/lib/bb/ui/crumbs/imagedetailspage.py
index 44f8987f7..03afc553f 100755
--- a/lib/bb/ui/crumbs/imagedetailspage.py
+++ b/lib/bb/ui/crumbs/imagedetailspage.py
@@ -329,8 +329,8 @@ class ImageDetailsPage (HobPage):
# The default kernel box for the qemu images
self.sel_kernel = ""
self.kernel_detail = None
- #if 'qemu' in image_name:
- # self.sel_kernel = self.get_kernel_file_name()
+ if 'qemu' in image_name:
+ self.sel_kernel = self.get_kernel_file_name()
# varlist = ["Kernel: "]
# vallist = []