summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-01-04 16:30:23 +0000
committerLeah Rowe <leah@libreboot.org>2025-01-04 16:30:23 +0000
commitbc2c14e76a8a39f4cceb2a45c0b3c4bc46f1ad70 (patch)
tree9697dd323b316030c7fd46414d57abb33d5a40c8 /include
parentc762850311a53fe0a19cac9eeb3a21c321188cf0 (diff)
add line break
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rw-r--r--include/vendor.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/vendor.sh b/include/vendor.sh
index f7798edf..242175e8 100644
--- a/include/vendor.sh
+++ b/include/vendor.sh
@@ -570,7 +570,8 @@ patch_rom()
# if a hash file is missing, we only want to allow nuke.
# this logical rule prevents double-nuke and double-inject
- # if injecting without a hash file
+ # if injecting without a hash file i.e. inject what was injected
+ # (or inject where no vendor files are needed, covered previously)
if [ "$has_hashes" != "y" ] && [ "$nukemode" != "nuke" ]; then
printf "inject: '%s' has no hash file. Skipping.\n" \
"$archive" 1>&2
@@ -578,7 +579,7 @@ patch_rom()
fi
# nuking *with* a hash file, i.e. nuking what was nuked before
if [ "$has_hashes" = "y" ] && [ "$nukemode" = "nuke" ]; then
- printf "inject nuke: '%s' has a hash file. Skipping nuke." \
+ printf "inject nuke: '%s' has a hash file. Skipping nuke.\n" \
"$archive" 1>&2
return 1
fi