mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-19 19:23:24 +02:00
modify/seabios: cleaner coding style
same as build/boot/roms
This commit is contained in:
@@ -1,9 +1,8 @@
|
|||||||
#!/usr/bin/env sh
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
#
|
|
||||||
# helper script: modify coreboot configs (run make menuconfig)
|
# helper script: modify coreboot configs (run make menuconfig)
|
||||||
#
|
#
|
||||||
# Copyright (C) 2021 Leah Rowe <info@minifree.org>
|
# Copyright (C) 2021, 2023 Leah Rowe <info@minifree.org>
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@@ -17,48 +16,41 @@
|
|||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
|
||||||
|
|
||||||
# This script assumes that the working directory is the root
|
|
||||||
# of git or release archive
|
|
||||||
|
|
||||||
[ "x${DEBUG+set}" = 'xset' ] && set -v
|
[ "x${DEBUG+set}" = 'xset' ] && set -v
|
||||||
set -u -e
|
set -u -e
|
||||||
|
|
||||||
printf "Updating seabios configs\n"
|
main()
|
||||||
|
{
|
||||||
|
printf "Updating seabios configs\n"
|
||||||
|
download_seabios
|
||||||
|
modify_configs
|
||||||
|
}
|
||||||
|
|
||||||
if [ ! -d "seabios" ]; then
|
download_seabios()
|
||||||
./download seabios
|
{
|
||||||
fi
|
if [ ! -d "seabios" ]; then
|
||||||
|
./download seabios
|
||||||
|
fi
|
||||||
|
if [ ! -d "seabios" ]; then
|
||||||
|
printf "error: Failed to download SeaBIOS. "
|
||||||
|
printf "Check internet connection?\n"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
if [ ! -d "seabios" ]; then
|
modify_configs()
|
||||||
printf "error: Failed to download SeaBIOS. check internet connection?\n"
|
{
|
||||||
exit 1
|
for config in resources/seabios/config/*; do
|
||||||
fi
|
if [ ! -f "${config}" ]; then
|
||||||
|
continue
|
||||||
for config in resources/seabios/config/*; do
|
fi
|
||||||
|
make distclean -BC seabios
|
||||||
if [ ! -f "${config}" ]; then continue; fi
|
mv "${config}" seabios/.config
|
||||||
|
make menuconfig -BC seabios
|
||||||
(
|
cp seabios/.config "${config}"
|
||||||
cd seabios
|
make distclean -BC seabios
|
||||||
make distclean
|
done
|
||||||
)
|
}
|
||||||
|
|
||||||
mv "${config}" seabios/.config
|
|
||||||
(
|
|
||||||
cd seabios
|
|
||||||
make menuconfig
|
|
||||||
)
|
|
||||||
|
|
||||||
cp seabios/.config "${config}"
|
|
||||||
|
|
||||||
(
|
|
||||||
cd seabios
|
|
||||||
make distclean
|
|
||||||
)
|
|
||||||
|
|
||||||
done
|
|
||||||
|
|
||||||
printf "\n\n"
|
|
||||||
|
|
||||||
|
main $@
|
||||||
|
|||||||
Reference in New Issue
Block a user