From 6722624dfcf0de8d9c237b207e23a72139be4759 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Mon, 28 Aug 2023 13:51:17 +0100 Subject: build/boot/roms: fix bad variable assignment this was an oversight, in a previous commit. there was a space, between variable name and the equals sign, and then another space, so it was trying to *execute* the rom Signed-off-by: Leah Rowe --- script/build/boot/roms_helper | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/script/build/boot/roms_helper b/script/build/boot/roms_helper index 71e170a4..5dea7fc0 100755 --- a/script/build/boot/roms_helper +++ b/script/build/boot/roms_helper @@ -523,8 +523,7 @@ build_uboot_roms() y=${uboot_config} z=${cbfstool} tmprom="$(mkUbootRom "$x" "fallback/payload" "$y" "$z")" - newrompath= \ - "${romdir}/uboot_payload_${board}_${initmode}_${displaymode}.rom" + newrompath="${romdir}/uboot_payload_${board}_${initmode}_${displaymode}.rom" [ "${initmode}" = "normal" ] && \ newrompath="${romdir}/uboot_payload_${board}_${initmode}.rom" moverom "${tmprom}" "${newrompath}" "${romtype}" || \ -- cgit v1.2.1