From 65675a200c821268bbe206d480f4da96567a0334 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Tue, 31 Oct 2023 22:04:33 +0000 Subject: 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 --- script/build/roms | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'script/build') diff --git a/script/build/roms b/script/build/roms index f19f7328..f4356764 100755 --- a/script/build/roms +++ b/script/build/roms @@ -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}" -- cgit v1.2.1