diff options
author | Leah Rowe <leah@libreboot.org> | 2023-08-28 13:51:17 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-08-28 13:51:17 +0100 |
commit | 6722624dfcf0de8d9c237b207e23a72139be4759 (patch) | |
tree | 409e2c557f170bef9ebfc5eab11013ef685c2b97 | |
parent | 55be6dda105711e82090ab59ba54c1a31f923576 (diff) |
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 <leah@libreboot.org>
-rwxr-xr-x | script/build/boot/roms_helper | 3 |
1 files changed, 1 insertions, 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}" || \ |