mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 05:52:36 +02:00
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>
This commit is contained in:
@@ -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}" || \
|
||||
|
||||
Reference in New Issue
Block a user