[bitbake-devel] [PATCH] hob/image_details/run_image: Kernel must be set

Ioana Grigoropol ioanax.grigoropol at intel.com
Wed Oct 3 11:13:18 UTC 2012


- 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 at intel.com>
---
 bitbake/lib/bb/ui/crumbs/imagedetailspage.py |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py
index 44f8987..03afc55 100755
--- a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py
+++ b/bitbake/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 = []
-- 
1.7.9.5





More information about the bitbake-devel mailing list