modify/coreboot: cleaner coding style

similar to the previous revision
fsdg20230625
Leah Rowe 2023-05-13 04:09:06 +01:00
parent 174d3af7a6
commit 71cac86634
1 changed files with 56 additions and 64 deletions

View File

@ -1,83 +1,75 @@
#!/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>
# Copyright (C) 2022 Ferass El Hafidi <vitali64pmemail@protonmail.com> # Copyright (C) 2022 Ferass El Hafidi <vitali64pmemail@protonmail.com>
# #
# 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
# the Free Software Foundation, either version 3 of the License, or # the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version. # (at your option) any later version.
# #
# This program is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU General Public License for more details.
# #
# 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 "Modifying coreboot configs\n" main()
{
printf "Modifying coreboot configs\n"
if [ $# -gt 0 ]; then
for board in ${@}; do
modifyconf "${board}"
done
else
for board in resources/coreboot/*; do
if [ ! -d "${board}" ]; then
continue
fi
modifyconf "${board##*/}"
done
fi
}
# Build ROM images for supported boards # Build ROM images for supported boards
modifyconf() { modifyconf() {
board="$1" board="$1"
if [ -f "resources/coreboot/${board}/board.cfg" ]; then
cbtree="undefined" if [ ! -f "resources/coreboot/${board}/board.cfg" ]; then
. "resources/coreboot/${board}/board.cfg" # source printf "\nmodify/config/coreboot: no board.cfg for: %s\n" \
if [ "${cbtree}" = "undefined" ]; then "${board}"
return 0 fi
fi
if [ ! -d "coreboot/${cbtree}" ]; then cbtree=""
./download coreboot ${cbtree} . "resources/coreboot/${board}/board.cfg" # source
fi
for cbcfg in resources/coreboot/${board}/config/*; do if [ -z ${cbtree} ]; then
if [ ! -f ${cbcfg} ]; then return 0
continue fi
fi cbdir="coreboot/${cbtree}"
( if [ ! -d "${cbdir}" ]; then
cd coreboot/${cbtree}/ ./download coreboot ${cbtree}
rm -f .config* fi
make distclean
) for cbcfg in resources/coreboot/${board}/config/*; do
mv $cbcfg coreboot/${cbtree}/.config if [ ! -f ${cbcfg} ]; then
( continue
cd coreboot/${cbtree}/ fi
make menuconfig make distclean -BC "${cbdir}"
) mv "${cbcfg}" "${cbdir}/.config"
mv coreboot/${cbtree}/.config $cbcfg make menuconfig -BC "${cbdir}"
rm -f coreboot/${cbtree}/.config* mv "${cbdir}/.config" "${cbcfg}"
( make distclean -BC "${cbdir}"
cd coreboot/${cbtree}/ done
make distclean
)
done
else
printf "\nmodify/config/coreboot: no board.cfg for: %s\n" "${board}"
fi
} }
if [ $# -gt 0 ]; then main $@
for board in "${@}"; do
modifyconf "${board}"
done
else
for board in resources/coreboot/*; do
if [ ! -d "${board}" ]; then
continue
fi
modifyconf "${board##*/}"
done
fi
printf "\n\n"