build/roms: properly print noblobs rom names
when printing the name of the rom being created, it's done before the check to rename based on vendorfiles in target.cfg. this patch fixes that bug. Signed-off-by: Leah Rowe <leah@libreboot.org>btrfsvols
parent
42fde8e574
commit
65675a200c
|
@ -384,10 +384,10 @@ moverom() {
|
|||
rompath="${1}"
|
||||
newrom="${2}"
|
||||
|
||||
[ "${vendorfiles}" = "n" ] && newrom="${newrom%.rom}_noblobs.rom"
|
||||
printf "Creating target image: %s\n" "${newrom}"
|
||||
|
||||
[ -d "${newrom%/*}" ] || x_ mkdir -p "${newrom%/*}/"
|
||||
[ "${vendorfiles}" = "n" ] && newrom="${newrom%.rom}_noblobs.rom"
|
||||
|
||||
x_ modify_coreboot_rom
|
||||
x_ cp "${rompath}" "${newrom}"
|
||||
|
|
Loading…
Reference in New Issue