diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-06-25 17:53:39 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-06-25 17:53:39 +0100 |
commit | 60f101996663ec94f63b97cd4615c6a723a62c27 (patch) | |
tree | 3f94bc27fdd5d8a29e0d6b6f749a9fa35e34ddb5 /resources/scripts/helpers/build | |
parent | cfb4ac12782dfffe39d32b9832ccbb4cd553cc7b (diff) | |
download | librebootfr-60f101996663ec94f63b97cd4615c6a723a62c27.tar.gz librebootfr-60f101996663ec94f63b97cd4615c6a723a62c27.zip |
build/config/*: Wait 2 seconds, not 5 seconds.
2 seconds is less annoying.
Diffstat (limited to 'resources/scripts/helpers/build')
-rwxr-xr-x | resources/scripts/helpers/build/config/corebootmodify | 2 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/config/corebootreplace | 2 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/config/corebootupdate | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/resources/scripts/helpers/build/config/corebootmodify b/resources/scripts/helpers/build/config/corebootmodify index 9048c47d..4430ff5c 100755 --- a/resources/scripts/helpers/build/config/corebootmodify +++ b/resources/scripts/helpers/build/config/corebootmodify @@ -36,7 +36,7 @@ fi cd "../../../coreboot/" for config in ${configs}; do printf "Updating config for %s\n" "${config}" - sleep 5 + sleep 2 if [ ! -d "../resources/libreboot/config/${config}/" ]; then printf "build/config/corebootmodify WARNING: config '%s' does not exist. Skipping.\n" "${config}" diff --git a/resources/scripts/helpers/build/config/corebootreplace b/resources/scripts/helpers/build/config/corebootreplace index 718a3def..ec6b9428 100755 --- a/resources/scripts/helpers/build/config/corebootreplace +++ b/resources/scripts/helpers/build/config/corebootreplace @@ -36,7 +36,7 @@ fi cd "../../../coreboot/" for config in ${configs}; do printf "Updating config for %s\n" "${config}" - sleep 5 + sleep 2 make menuconfig diff --git a/resources/scripts/helpers/build/config/corebootupdate b/resources/scripts/helpers/build/config/corebootupdate index 47857c56..6e4ad672 100755 --- a/resources/scripts/helpers/build/config/corebootupdate +++ b/resources/scripts/helpers/build/config/corebootupdate @@ -36,7 +36,7 @@ fi cd "../../../coreboot/" for config in ${configs}; do printf "Updating config for %s\n" "${config}" - sleep 5 + sleep 2 if [ ! -d "../resources/libreboot/config/${config}/" ]; then printf "build/config/corebootupdate WARNING: config '%s' does not exist. Skipping.\n" "${config}" |