summaryrefslogtreecommitdiffstats
path: root/resources/scripts/helpers/build/config/seabiosupdate
diff options
context:
space:
mode:
Diffstat (limited to 'resources/scripts/helpers/build/config/seabiosupdate')
-rwxr-xr-xresources/scripts/helpers/build/config/seabiosupdate17
1 files changed, 12 insertions, 5 deletions
diff --git a/resources/scripts/helpers/build/config/seabiosupdate b/resources/scripts/helpers/build/config/seabiosupdate
index d15a063..94dfd1d 100755
--- a/resources/scripts/helpers/build/config/seabiosupdate
+++ b/resources/scripts/helpers/build/config/seabiosupdate
@@ -28,9 +28,16 @@ set -u -e
(
cd seabios/
-if [ -f ../resources/seabios/config/config ]; then
- cp ../resources/seabios/config/config .config
- make oldconfig
- mv .config ../resources/seabios/config/config
-fi
+for cfgtype in config config_vga; do
+
+ printf "doing config %s\n" "${cfgtype}"
+ sleep 2
+
+ if [ -f ../resources/seabios/config/${cfgtype} ]; then
+ cp ../resources/seabios/config/${cfgtype} .config
+ make oldconfig
+ mv .config ../resources/seabios/config/${cfgtype}
+ fi
+
+done
)