summaryrefslogtreecommitdiffstats
path: root/resources/scripts/helpers/build/config/corebootupdate
diff options
context:
space:
mode:
Diffstat (limited to 'resources/scripts/helpers/build/config/corebootupdate')
-rwxr-xr-xresources/scripts/helpers/build/config/corebootupdate18
1 files changed, 9 insertions, 9 deletions
diff --git a/resources/scripts/helpers/build/config/corebootupdate b/resources/scripts/helpers/build/config/corebootupdate
index 4e4db74..fa0a1fe 100755
--- a/resources/scripts/helpers/build/config/corebootupdate
+++ b/resources/scripts/helpers/build/config/corebootupdate
@@ -25,22 +25,22 @@
[ "x${DEBUG+set}" = 'xset' ] && set -v
set -u -e
-cd resources/libreboot/config/
+cd "resources/libreboot/config/"
if [ $# -lt 1 ]; then
- configs=$(ls)
+ configs="$(ls)"
else
- configs=$@
+ configs="$@"
fi
-cd ../../../coreboot/
-for config in $configs; do
- printf "Updating config for $config\n"
+cd "../../../coreboot/"
+for config in ${configs}; do
+ printf "Updating config for %s\n" "${config}"
sleep 5
- mv ../resources/libreboot/config/$config/config .config
+ mv "../resources/libreboot/config/${config}/config" ".config"
make oldconfig
- mv .config ../resources/libreboot/config/$config/config
+ mv ".config" "../resources/libreboot/config/${config}/config"
done
-cd ../
+cd "../"