mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-21 00:27:09 +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}
|
y=${uboot_config}
|
||||||
z=${cbfstool}
|
z=${cbfstool}
|
||||||
tmprom="$(mkUbootRom "$x" "fallback/payload" "$y" "$z")"
|
tmprom="$(mkUbootRom "$x" "fallback/payload" "$y" "$z")"
|
||||||
newrompath= \
|
newrompath="${romdir}/uboot_payload_${board}_${initmode}_${displaymode}.rom"
|
||||||
"${romdir}/uboot_payload_${board}_${initmode}_${displaymode}.rom"
|
|
||||||
[ "${initmode}" = "normal" ] && \
|
[ "${initmode}" = "normal" ] && \
|
||||||
newrompath="${romdir}/uboot_payload_${board}_${initmode}.rom"
|
newrompath="${romdir}/uboot_payload_${board}_${initmode}.rom"
|
||||||
moverom "${tmprom}" "${newrompath}" "${romtype}" || \
|
moverom "${tmprom}" "${newrompath}" "${romtype}" || \
|
||||||
|
|||||||
Reference in New Issue
Block a user