]> code.ossystems Code Review - openembedded-core.git/commitdiff
wic: Fix bad directory name in bootimg-efi
authorTom Zanussi <tom.zanussi@linux.intel.com>
Tue, 22 Jul 2014 19:02:39 +0000 (14:02 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 23 Jul 2014 20:47:02 +0000 (21:47 +0100)
The original move of the mkefidisk code to the bootimg-efi plugin
resulted in a bad hdddir - fix it.

Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/lib/mic/plugins/source/bootimg-efi.py

index 2cc179a337c3ac2f4d902e82cd68494213194da2..0dd9152b595ce81c37e8ec9cf7fe4104c2dc2e43 100644 (file)
@@ -112,7 +112,7 @@ class BootimgEFIPlugin(SourcePlugin):
         staging_kernel_dir = kernel_dir
         staging_data_dir = bootimg_dir
 
-        hdddir = "%s/hdd" % cr_workdir
+        hdddir = "%s/hdd/boot" % cr_workdir
 
         install_cmd = "install -m 0644 %s/bzImage %s/bzImage" % \
             (staging_kernel_dir, hdddir)