diff options
| author | Clayton Casciato <majortomtosourcecontrol@gmail.com> | 2024-11-07 10:10:47 -0700 |
|---|---|---|
| committer | Steve Sakoman <steve@sakoman.com> | 2024-11-26 06:11:30 -0800 |
| commit | 3593709b594e02cff9d214576ca0f2cb1bbf2c50 (patch) | |
| tree | 0171a111861dacb322057164dfdee711aeccdbb7 | |
| parent | 04334a754233b6dbce28395d6548fb82692f49ae (diff) | |
| download | poky-3593709b594e02cff9d214576ca0f2cb1bbf2c50.tar.gz | |
uboot-sign: fix concat_dtb arguments
Fixes [YOCTO #15642]
Ensure empty argument passed from do_uboot_assemble_fitimage is passed to
concat_dtb
(From OE-Core rev: 583580eb5dbfdf898a70bf9e8f31c5a717e986f4)
Signed-off-by: Clayton Casciato <majortomtosourcecontrol@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b3c473785e5ceef677ff2b77c5fc17f5704c622f)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
| -rw-r--r-- | meta/classes-recipe/uboot-sign.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/uboot-sign.bbclass b/meta/classes-recipe/uboot-sign.bbclass index 3e5f5dcf66..a17be745ce 100644 --- a/meta/classes-recipe/uboot-sign.bbclass +++ b/meta/classes-recipe/uboot-sign.bbclass | |||
| @@ -338,7 +338,7 @@ uboot_assemble_fitimage_helper() { | |||
| 338 | binary="$2" | 338 | binary="$2" |
| 339 | 339 | ||
| 340 | if [ "${UBOOT_SIGN_ENABLE}" = "1" -a -n "${UBOOT_DTB_BINARY}" ] ; then | 340 | if [ "${UBOOT_SIGN_ENABLE}" = "1" -a -n "${UBOOT_DTB_BINARY}" ] ; then |
| 341 | concat_dtb $type $binary | 341 | concat_dtb "$type" "$binary" |
| 342 | fi | 342 | fi |
| 343 | 343 | ||
| 344 | if [ "${UBOOT_FITIMAGE_ENABLE}" = "1" -a -n "${SPL_DTB_BINARY}" ]; then | 344 | if [ "${UBOOT_FITIMAGE_ENABLE}" = "1" -a -n "${SPL_DTB_BINARY}" ]; then |
