diff options
author | Andrew Bradford <andrew.bradford@kodakalaris.com> | 2016-08-04 13:40:40 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-10 10:46:33 +0100 |
commit | 3153bd381cee101472a169de327d2152329d261a (patch) | |
tree | 06787e53ae9d0ef08b5b2dd087bf6aefcfdeac44 /meta/classes | |
parent | d90eaa8518abc294aa072c3267463fce3f940af6 (diff) | |
download | poky-3153bd381cee101472a169de327d2152329d261a.tar.gz |
kernel-fitimage.bbclass: do_assemble_fitimage(): cd to $B
Prior to assembling the fitimage, ensure that $B is the cwd due to
bitbake commit 67a7b8b021badc17d8fdf447c250e79d291e75f7 "build: don't
use $B as the default cwd for functions".
Without this change, do_assemble_fitimage() fails like:
Log data follows:
| DEBUG: Executing shell function do_assemble_fitimage
| arm-ka-linux-gnueabi-objcopy: 'vmlinux': No such file
| WARNING: exit code 1 from a shell command.
| ERROR: Function failed: do_assemble_fitimage
(From OE-Core rev: 42d50e8f5f3a98e50a0f50473ebc83dc6347b634)
Signed-off-by: Andrew Bradford <andrew.bradford@kodakalaris.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/kernel-fitimage.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index 9a3caf5535..7cca180363 100644 --- a/meta/classes/kernel-fitimage.bbclass +++ b/meta/classes/kernel-fitimage.bbclass | |||
@@ -189,6 +189,7 @@ EOF | |||
189 | } | 189 | } |
190 | 190 | ||
191 | do_assemble_fitimage() { | 191 | do_assemble_fitimage() { |
192 | cd ${B} | ||
192 | if echo ${KERNEL_IMAGETYPES} | grep -wq "fitImage"; then | 193 | if echo ${KERNEL_IMAGETYPES} | grep -wq "fitImage"; then |
193 | kernelcount=1 | 194 | kernelcount=1 |
194 | dtbcount="" | 195 | dtbcount="" |