diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-05 18:14:44 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-05 18:14:44 +0100 |
commit | 8ca06463ebc42142ca7618ee6a07950059cf4820 (patch) | |
tree | 16bf16855e7428578a64ea0d26c65c1b627e3274 | |
parent | dc9fe517cb04c1903ce7974267821c51640e0e60 (diff) |
rom.sh: Print the rom image path being generated
This message used to exist, and it's a nice feedback
for the user, to confirm that the build went OK.
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r-- | include/rom.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/rom.sh b/include/rom.sh index 98b94926..0eebdabb 100644 --- a/include/rom.sh +++ b/include/rom.sh @@ -257,6 +257,7 @@ cprom() [ $# -gt 0 ] && [ "$1" = "seauboot" ] && \ cbfs "$irom" "$grubdata/bootorder_uboot" bootorder raw; : + printf "Creating new %s image: '%s'\n" "$projectname" "$newrom" x_ mkdir -p "bin/$target" x_ $cpcmd "$irom" "$newrom" } |