summaryrefslogtreecommitdiffstats
path: root/bitbake
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:30:18 +0100
commit93fdfafbfc74a4096a2a5676f28d67ec82c70ba5 (patch)
tree2e8f373d115c0cfdb25fa40069f15b516fd6cf56 /bitbake
parent0e6cc44a111ff3189011d503217223745055a643 (diff)
downloadpoky-93fdfafbfc74a4096a2a5676f28d67ec82c70ba5.tar.gz
bitbake: 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 (Bitbake rev: 334125a98ecb8a938aee4bc530205ad75099361c) Signed-off-by: Ioana Grigoropol <ioanax.grigoropol@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/imagedetailspage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py
index 44f8987f79..03afc553f3 100755
--- a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py
+++ b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py
@@ -329,8 +329,8 @@ class ImageDetailsPage (HobPage):
329 # The default kernel box for the qemu images 329 # The default kernel box for the qemu images
330 self.sel_kernel = "" 330 self.sel_kernel = ""
331 self.kernel_detail = None 331 self.kernel_detail = None
332 #if 'qemu' in image_name: 332 if 'qemu' in image_name:
333 # self.sel_kernel = self.get_kernel_file_name() 333 self.sel_kernel = self.get_kernel_file_name()
334 334
335 # varlist = ["Kernel: "] 335 # varlist = ["Kernel: "]
336 # vallist = [] 336 # vallist = []