diff options
| author | Clayton Casciato <majortomtosourcecontrol@gmail.com> | 2024-11-07 10:10:47 -0700 |
|---|---|---|
| committer | Steve Sakoman <steve@sakoman.com> | 2024-11-26 05:37:09 -0800 |
| commit | c475ad45eb612c88ff09bf2bb4ec921187116554 (patch) | |
| tree | 48706637f5a917c5bacb8b1694fdbf168368d54f | |
| parent | cf7ae7abb72e7f07ceb5b86dcc60472a929c2fbe (diff) | |
| download | poky-c475ad45eb612c88ff09bf2bb4ec921187116554.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: 668c5cbd8e4e4d03ac7007b997251cfe9419ba01)
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 |
