diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-06-25 12:56:43 (EDT) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-06-25 12:56:43 (EDT) |
commit | bb81fba841e29ec34c3d4c04de43f5b39310bcf3 (patch) | |
tree | e7da124b5482c0e6883dc087e4b6e0eec3ba9a51 | |
parent | 60f101996663ec94f63b97cd4615c6a723a62c27 (diff) | |
download | libreboot-bb81fba841e29ec34c3d4c04de43f5b39310bcf3.zip libreboot-bb81fba841e29ec34c3d4c04de43f5b39310bcf3.tar.gz libreboot-bb81fba841e29ec34c3d4c04de43f5b39310bcf3.tar.bz2 |
build/config/*: Improve the message output a bit
-rwxr-xr-x | resources/scripts/helpers/build/config/corebootmodify | 2 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/config/corebootreplace | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/resources/scripts/helpers/build/config/corebootmodify b/resources/scripts/helpers/build/config/corebootmodify index 4430ff5..574e7ae 100755 --- a/resources/scripts/helpers/build/config/corebootmodify +++ b/resources/scripts/helpers/build/config/corebootmodify @@ -35,7 +35,7 @@ fi cd "../../../coreboot/" for config in ${configs}; do - printf "Updating config for %s\n" "${config}" + printf "Modifying config for %s\n" "${config}" sleep 2 if [ ! -d "../resources/libreboot/config/${config}/" ]; then diff --git a/resources/scripts/helpers/build/config/corebootreplace b/resources/scripts/helpers/build/config/corebootreplace index ec6b942..4377ff2 100755 --- a/resources/scripts/helpers/build/config/corebootreplace +++ b/resources/scripts/helpers/build/config/corebootreplace @@ -35,7 +35,7 @@ fi cd "../../../coreboot/" for config in ${configs}; do - printf "Updating config for %s\n" "${config}" + printf "Replacing or creating new config for %s\n" "${config}" sleep 2 make menuconfig |