diff options
author | Leah Rowe <leah@libreboot.org> | 2025-01-27 06:49:45 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-01-27 06:49:45 +0000 |
commit | 6ebdd3c72ba9c2af8fee953218785dee96e3dec6 (patch) | |
tree | 4e38537415273a08cdaf1cb5a9cc6df2ac734811 | |
parent | a08748a9edac08d7f1d40234e04a97692a6e0b37 (diff) |
vendor.sh: Don't show gbe filename on inject
it's a temporary file, so printing it may confuse
the user. hide it from the output.
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r-- | include/vendor.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vendor.sh b/include/vendor.sh index bde245d9..d03434cb 100644 --- a/include/vendor.sh +++ b/include/vendor.sh @@ -747,7 +747,7 @@ modify_mac_addresses() done < "tmp/rom.list" printf "\nThe following GbE NVM words were written in '%s':\n" \ "$archive" - x_ util/nvmutil/nvm tmp/gbe dump + x_ util/nvmutil/nvm tmp/gbe dump | grep -v "bytes read from file" [ "$new_mac" = "restore" ] && \ printf "\nNOTE: User specified setmac 'restore' argument.\n" && \ |