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>btrfsvols
parent
55be6dda10
commit
6722624dfc
|
@ -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}" || \
|
||||
|
|
Loading…
Reference in New Issue