diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-08-30 15:49:01 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-08-30 15:49:01 +0100 |
commit | 82e5f8d5fc8aa8bfe013b84460b296ce188ab7da (patch) | |
tree | 0f6b4f64bba0e9bc6babe197f8a57fdc9acc9e2d /resources/scripts/helpers/build/config/corebootreplace | |
parent | a8de16a388680e179f97fe2fdfbdb307fabc9b8e (diff) | |
download | librebootfr-82e5f8d5fc8aa8bfe013b84460b296ce188ab7da.tar.gz librebootfr-82e5f8d5fc8aa8bfe013b84460b296ce188ab7da.zip |
build/config/coreboot{replace,update}: for function for for loop
Diffstat (limited to 'resources/scripts/helpers/build/config/corebootreplace')
-rwxr-xr-x | resources/scripts/helpers/build/config/corebootreplace | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/resources/scripts/helpers/build/config/corebootreplace b/resources/scripts/helpers/build/config/corebootreplace index d5fdcb29..0c41c9e1 100755 --- a/resources/scripts/helpers/build/config/corebootreplace +++ b/resources/scripts/helpers/build/config/corebootreplace @@ -25,23 +25,22 @@ [ "x${DEBUG+set}" = 'xset' ] && set -v set -u -e -cd "resources/libreboot/config/grub/" +hackconfig () { + cd "coreboot/" -if [ $# -lt 1 ]; then - configs="$(for config in *; do printf "%s\n" "${config}"; done)" -else - configs="${*}" -fi - -cd "../../../../coreboot/" -for config in ${configs}; do - printf "Replacing or creating new config for %s\n" "${config}" + printf "Replacing or creating new config for %s\n" "${1}" sleep 2 - + make menuconfig - [ ! -d "../resources/libreboot/config/grub/${config}/" ] && mkdir -p "../resources/libreboot/config/grub/${config}/" - mv ".config" "../resources/libreboot/config/grub/${config}/config" -done + [ ! -d "../resources/libreboot/config/grub/${1}/" ] && mkdir -p "../resources/libreboot/config/grub/${1}/" + mv ".config" "../resources/libreboot/config/grub/${1}/config" -cd "../" + cd "../" +} + +if [ $# -lt 1 ]; then + for config in resources/libreboot/config/grub/*; do hackconfig "${config##*/}"; done +else + for config in "${@}"; do hackconfig "${config}"; done +fi |