diff options
author | Leah Woods <info@minifree.org> | 2016-05-19 22:25:09 (EDT) |
---|---|---|
committer | Leah Woods <info@minifree.org> | 2016-05-19 22:35:28 (EDT) |
commit | b1ff016f3f422c47b5c65a4d3ebfc449f1fd5743 (patch) | |
tree | c5aca46c20b562f190a93f399670b1361090959a /resources/scripts/helpers/build/config | |
parent | 870be408e848aa884f8bcc6c2213cb31e4cd2615 (diff) | |
download | libreboot-b1ff016f3f422c47b5c65a4d3ebfc449f1fd5743.zip libreboot-b1ff016f3f422c47b5c65a4d3ebfc449f1fd5743.tar.gz libreboot-b1ff016f3f422c47b5c65a4d3ebfc449f1fd5743.tar.bz2 |
Don't use SeaVGABIOS on systems that use SeaGRUB
Diffstat (limited to 'resources/scripts/helpers/build/config')
-rwxr-xr-x | resources/scripts/helpers/build/config/seabiosmodify | 17 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/config/seabiosupdate | 17 |
2 files changed, 24 insertions, 10 deletions
diff --git a/resources/scripts/helpers/build/config/seabiosmodify b/resources/scripts/helpers/build/config/seabiosmodify index 08ec50e..c6841e4 100755 --- a/resources/scripts/helpers/build/config/seabiosmodify +++ b/resources/scripts/helpers/build/config/seabiosmodify @@ -28,11 +28,18 @@ set -u -e ( cd "seabios/" -if [ -f "../resources/seabios/config/config" ]; then - cp "../resources/seabios/config/config" ".config" -fi +for cfgtype in config config_vga; do -make menuconfig + printf "doing config %s\n" "${cfgtype}" + sleep 2 -mv ".config" "../resources/seabios/config/config" + if [ -f "../resources/seabios/config/${cfgtype}" ]; then + cp "../resources/seabios/config/${cfgtype}" ".config" + fi + + make menuconfig + + mv ".config" "../resources/seabios/config/${cfgtype}" + +done ) 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 ) |