diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2014-08-06 08:43:55 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-11 10:53:05 +0100 |
commit | 0065258234e14b020f802d020fb1034bab5602f9 (patch) | |
tree | 6a6e64b33e0acbcde96929c73c2f0ddb1a81d2a0 /meta/classes | |
parent | 7c872ea5971cbd7fc24bffcac7794b4b7d4b9a8e (diff) | |
download | poky-0065258234e14b020f802d020fb1034bab5602f9.tar.gz |
boot-directdisk.bbclass: use local HDDDIR
Use $HDDDIR rather than ${HDDDIR} in build_boot_dd(), otherwise may
errors:
- Set these in local.conf:
IMAGE_FSTYPES += "live"
IMAGE_FSTYPES += "vmdk"
AUTO_SYSLINUXMENU = "1"
NOHDD = "1"
$ bitbake core-image-sato
DEBUG: Executing shell function build_boot_dd
install: cannot create regular file
`/path/to/core-image-sato-1.0/hddimg//vesamenu.c32': No such file or directory
WARNING: exit code 1 from a shell command.
This because it uses the ${HDDDIR} which is set in bootimg.bbclass, use
local HDDDIR which is set in build_boot_dd() will fix the problem.
(From OE-Core rev: 1891c39a359e983bb8fd7992b7b5a1aaac11baf7)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/boot-directdisk.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/boot-directdisk.bbclass b/meta/classes/boot-directdisk.bbclass index 5107d7f8e4..09da032049 100644 --- a/meta/classes/boot-directdisk.bbclass +++ b/meta/classes/boot-directdisk.bbclass | |||
@@ -102,9 +102,9 @@ build_boot_dd() { | |||
102 | 102 | ||
103 | if [ "${IS_VMDK}" = "true" ]; then | 103 | if [ "${IS_VMDK}" = "true" ]; then |
104 | if [ "x${AUTO_SYSLINUXMENU}" = "x1" ] ; then | 104 | if [ "x${AUTO_SYSLINUXMENU}" = "x1" ] ; then |
105 | install -m 0644 ${STAGING_DIR}/${MACHINE}/usr/share/syslinux/vesamenu.c32 ${HDDDIR}${SYSLINUXDIR}/vesamenu.c32 | 105 | install -m 0644 ${STAGING_DIR}/${MACHINE}/usr/share/syslinux/vesamenu.c32 $HDDDIR/${SYSLINUXDIR}/ |
106 | if [ "x${SYSLINUX_SPLASH}" != "x" ] ; then | 106 | if [ "x${SYSLINUX_SPLASH}" != "x" ] ; then |
107 | install -m 0644 ${SYSLINUX_SPLASH} ${HDDDIR}${SYSLINUXDIR}/splash.lss | 107 | install -m 0644 ${SYSLINUX_SPLASH} $HDDDIR/${SYSLINUXDIR}/splash.lss |
108 | fi | 108 | fi |
109 | fi | 109 | fi |
110 | fi | 110 | fi |