diff options
author | André Draszik <adraszik@tycoint.com> | 2017-09-20 10:41:53 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-09-25 14:14:16 +0100 |
commit | 34f9bcb8d5d1f9ac80c7b333da5e0eb006d68c72 (patch) | |
tree | c750f0a295a3d2a3b79acd8f2165911ce0ae7c31 | |
parent | 5912b2e5b529e9ce7b60a21e2c3f94295c20a17b (diff) | |
download | poky-34f9bcb8d5d1f9ac80c7b333da5e0eb006d68c72.tar.gz |
kernel-fitimage: sanitize dtb section name (unbreak MIPS)
We can't build fitImages for MIPS any more:
| Error: fit-image.its:21.27-28 syntax error
| FATAL ERROR: Unable to parse input tree
| uboot-mkimage: Can't read arch/mips/boot/fitImage.tmp: Invalid argument
Since commit cd2ed7f80b555add07795cc0cbaee866e6c193a3
("kernel-fitimage: dtb sections named by their filenames
and one config section for each dtb"), commit
1ec405ef5df82884c8997878bbe6c66d924b5127 in yocto, dtb
sections are named by the DTB filename, but the filename
can legally be in a subdirectory below
arch/$arch/boot/dts/, and on MIPS all DTBs are actually
in a subdirectory.
If so, mkimage fails with the above error message.
Unbreak this by replacing the offending character
(directory separator /)
(From OE-Core rev: 335fc50cf54e47db4e3d5c35a9846484faf0270f)
Signed-off-by: André Draszik <adraszik@tycoint.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 2630b47316..6f1b7667bc 100644 --- a/meta/classes/kernel-fitimage.bbclass +++ b/meta/classes/kernel-fitimage.bbclass | |||
@@ -351,6 +351,7 @@ fitimage_assemble() { | |||
351 | DTB_PATH="arch/${ARCH}/boot/${DTB}" | 351 | DTB_PATH="arch/${ARCH}/boot/${DTB}" |
352 | fi | 352 | fi |
353 | 353 | ||
354 | DTB=$(echo "${DTB}" | tr '/' '_') | ||
354 | DTBS="${DTBS} ${DTB}" | 355 | DTBS="${DTBS} ${DTB}" |
355 | fitimage_emit_section_dtb ${1} ${DTB} ${DTB_PATH} | 356 | fitimage_emit_section_dtb ${1} ${DTB} ${DTB_PATH} |
356 | done | 357 | done |