2022-12-16 18:45:54 +00:00
|
|
|
#!/usr/bin/env sh
|
2021-05-18 12:56:12 +00:00
|
|
|
|
|
|
|
# helper script: create ROM images for a given mainboard
|
|
|
|
#
|
2023-05-10 01:48:34 +00:00
|
|
|
# Copyright (C) 2020,2021,2023 Leah Rowe <info@minifree.org>
|
|
|
|
# Copyright (C) 2021,2022 Ferass El Hafidi
|
|
|
|
# <vitali64pmemail@protonmail.com>
|
2022-11-14 00:51:12 +00:00
|
|
|
# Copyright (C) 2022 Caleb La Grange <thonkpeasant@protonmail.com>
|
2022-08-26 12:06:45 +00:00
|
|
|
# Copyright (C) 2022 Alper Nebi Yasak <alpernebiyasak@gmail.com>
|
2021-05-18 12:56:12 +00:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# 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
|
|
|
|
|
2022-11-14 00:51:12 +00:00
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
[ "x${DEBUG+set}" = 'xset' ] && set -v
|
|
|
|
set -u -e
|
|
|
|
|
|
|
|
projectname="$(cat projectname)"
|
|
|
|
|
2023-05-10 01:48:34 +00:00
|
|
|
kmapdir="resources/grub/keymap"
|
2022-11-14 00:51:12 +00:00
|
|
|
displaymodes=""
|
|
|
|
payloads=""
|
|
|
|
keyboard_layouts=""
|
2022-12-16 18:45:54 +00:00
|
|
|
while [ $# -gt 0 ]; do
|
2022-11-14 00:51:12 +00:00
|
|
|
case ${1} in
|
|
|
|
-d)
|
2022-12-16 18:45:54 +00:00
|
|
|
displaymodes="${displaymodes}${2}"
|
2022-11-14 00:51:12 +00:00
|
|
|
shift ;;
|
|
|
|
-p)
|
2022-12-16 18:45:54 +00:00
|
|
|
payloads="${payloads}${2}"
|
2022-11-14 00:51:12 +00:00
|
|
|
shift ;;
|
|
|
|
-k)
|
2022-12-16 18:45:54 +00:00
|
|
|
keyboard_layouts="${keyboard_layouts}${2}"
|
2022-11-14 00:51:12 +00:00
|
|
|
shift ;;
|
|
|
|
*)
|
|
|
|
board=${1} ;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2023-05-10 01:48:34 +00:00
|
|
|
printf "board is %s , kb is %s , displaymode is %s , payloads is %s\n" \
|
|
|
|
${board} ${keyboard_layouts} ${displaymodes} ${payloads}
|
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ ! -d "resources/coreboot/${board}" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
printf "build/roms: Target not defined: %s\n" ${board}
|
2021-05-18 12:56:12 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f "resources/coreboot/${board}/board.cfg" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
printf "build/roms: Missing board.cfg for target: %s\n" ${board}
|
2021-05-18 12:56:12 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2021-11-27 19:06:32 +00:00
|
|
|
|
2023-05-10 01:48:34 +00:00
|
|
|
grub_scan_disk="undefined"
|
2021-05-18 12:56:12 +00:00
|
|
|
cbtree="undefined"
|
|
|
|
romtype="normal" # optional parameter in board.cfg. "normal" is default
|
|
|
|
arch="undefined"
|
2023-05-10 01:48:34 +00:00
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
# Disable all payloads by default.
|
|
|
|
# board.cfg files have to specifically enable [a] payload(s)
|
|
|
|
payload_grub="n"
|
|
|
|
payload_grub_withseabios="n" # seabios chainloaded from grub
|
|
|
|
payload_seabios="n"
|
2023-05-10 01:48:34 +00:00
|
|
|
payload_seabios_withgrub="n" # i386-coreboot grub from SeaBIOS boot menu
|
2021-05-18 12:56:12 +00:00
|
|
|
seabios_opromloadonly="0"
|
2021-11-01 02:51:10 +00:00
|
|
|
payload_memtest="n"
|
2022-08-26 14:14:57 +00:00
|
|
|
payload_uboot="n"
|
|
|
|
uboot_config="undefined"
|
2021-05-18 12:56:12 +00:00
|
|
|
# Override the above defaults using board.cfg
|
2022-12-16 18:45:54 +00:00
|
|
|
. "resources/coreboot/${board}/board.cfg"
|
2021-11-27 19:06:32 +00:00
|
|
|
|
2021-11-30 18:44:08 +00:00
|
|
|
if [ "${grub_scan_disk}" = "undefined" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
printf "build/roms: Target '%s' does not define grub_scan_disk. " \
|
2023-05-10 04:09:10 +00:00
|
|
|
${board}
|
2023-05-10 01:48:34 +00:00
|
|
|
printf "Defaulting to 'both'.\n"
|
2021-11-30 18:44:08 +00:00
|
|
|
grub_scan_disk="both"
|
|
|
|
fi
|
|
|
|
|
2021-11-30 18:31:19 +00:00
|
|
|
if [ "${grub_scan_disk}" != "both" ] && \
|
2023-05-10 04:09:10 +00:00
|
|
|
[ "${grub_scan_disk}" != "ata" ] && \
|
|
|
|
[ "${grub_scan_disk}" != "ahci" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
printf "build/roms: Target '%s' defines bad grub_scan_disk option. " \
|
|
|
|
${board}
|
|
|
|
printf "Defaulting to 'both'.\n"
|
2021-11-30 18:35:52 +00:00
|
|
|
grub_scan_disk="both"
|
|
|
|
# erroring out would be silly. just use the default
|
2021-11-27 19:06:32 +00:00
|
|
|
fi
|
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ "${cbtree}" = "undefined" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
printf "build/roms: Target '%s' does not define a coreboot tree. " \
|
|
|
|
${board}
|
|
|
|
printf "Skipping build.\n"
|
2021-05-18 12:56:12 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ "${arch}" = "undefined" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
printf "build/roms: Target '%s' does not define a CPU type. " \
|
|
|
|
${board}
|
|
|
|
printf "Skipping build.\n"
|
2021-05-18 12:56:12 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${seabios_opromloadonly}" != "0" ] && \
|
|
|
|
[ "${seabios_opromloadonly}" != "1" ]; then
|
|
|
|
seabios_opromloadonly="0"
|
|
|
|
fi
|
2021-11-01 02:51:10 +00:00
|
|
|
if [ "${payload_memtest}" != "n" ] && \
|
|
|
|
[ "${payload_memtest}" != "y" ]; then
|
|
|
|
payload_memtest="n"
|
|
|
|
fi
|
2021-11-21 15:57:40 +00:00
|
|
|
if [ "${payload_grub_withseabios}" = "y" ]; then
|
2021-05-18 12:56:12 +00:00
|
|
|
payload_grub="y"
|
|
|
|
fi
|
|
|
|
if [ "${payload_grub_withseabios}" = "y" ]; then
|
|
|
|
payload_seabios="y"
|
2023-05-10 01:48:34 +00:00
|
|
|
payload_seabios_withgrub="y"
|
2021-05-18 12:56:12 +00:00
|
|
|
fi
|
|
|
|
if [ "${payload_seabios_withgrub}" = "y" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
payload_seabios="y"
|
2021-05-18 12:56:12 +00:00
|
|
|
fi
|
2023-05-10 01:48:34 +00:00
|
|
|
# NOTE: reverse logic must NOT be applied. If SeaBIOS-with-GRUB works, that
|
|
|
|
# doesn't necessarily mean GRUb-with-SeaBIOS will. For example, the board
|
|
|
|
# might have an external GPU, where it's recommended to boot SeaBIOS first
|
|
|
|
if [ "${payload_grub}" != "y" ] && [ "${payload_seabios}" != "y" ] \
|
|
|
|
&& [ "${payload_uboot}" != "y" ]; then
|
|
|
|
for configfile in "resources/coreboot/${board}/config/"*; do
|
|
|
|
if [ ! -e "${configfile}" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
printf "ERROR build/roms: Target '%s' defines no payload. " \
|
|
|
|
${board}
|
|
|
|
printf "Exiting.\n"
|
|
|
|
exit 1
|
2021-05-18 12:56:12 +00:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2022-08-26 14:14:57 +00:00
|
|
|
if [ "${payload_uboot}" != "n" ] && \
|
|
|
|
[ "${payload_uboot}" != "y" ]; then
|
|
|
|
payload_uboot="n"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${payload_uboot}" = "y" ] && \
|
|
|
|
[ "${uboot_config}" = "undefined" ]; then
|
|
|
|
uboot_config="default"
|
|
|
|
fi
|
|
|
|
|
2022-11-14 00:51:12 +00:00
|
|
|
# Override all payload directives with cmdline args
|
|
|
|
if [ ! -z ${payloads} ]; then
|
|
|
|
echo "setting payloads $payloads"
|
|
|
|
payload_grub="n"
|
|
|
|
payload_grub_withseabios="n" # seabios chainloaded from grub
|
|
|
|
payload_seabios="n"
|
2023-05-10 01:48:34 +00:00
|
|
|
payload_seabios_withgrub="n" # i386-coreboot grub from SeaBIOS menu
|
2022-12-06 16:52:00 +00:00
|
|
|
payload_uboot="n"
|
2022-11-14 00:51:12 +00:00
|
|
|
seabios_opromloadonly="0"
|
|
|
|
payload_memtest="n"
|
|
|
|
|
|
|
|
for payload in ${payloads} ; do
|
|
|
|
eval "payload_${payload}=y"
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
romdir="bin/${board}"
|
|
|
|
cbdir="coreboot/${board}"
|
|
|
|
if [ "${board}" != "${cbtree}" ]; then
|
|
|
|
cbdir="coreboot/${cbtree}"
|
|
|
|
fi
|
|
|
|
cbfstool="${cbdir}/util/cbfstool/cbfstool"
|
|
|
|
corebootrom="${cbdir}/build/coreboot.rom"
|
|
|
|
seavgabiosrom="payload/seabios/seavgabios.bin"
|
|
|
|
|
|
|
|
if [ ! -d "${cbdir}" ]; then
|
|
|
|
./download coreboot ${cbtree}
|
|
|
|
fi
|
|
|
|
|
2022-12-07 18:55:05 +00:00
|
|
|
cat version > "${cbdir}/.coreboot-version"
|
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ "${arch}" = "x86_32" ] || [ "${arch}" = "x86_64" ]; then
|
|
|
|
if [ ! -d "${cbdir}/util/crossgcc/xgcc/i386-elf/" ]; then
|
2022-12-07 18:55:05 +00:00
|
|
|
# Even for 64-bit machines, coreboot builds 32-bit ROM
|
|
|
|
# images, so we only need to worry about i386-elf
|
|
|
|
make -C "${cbdir}" crossgcc-i386 CPUS=$(nproc)
|
2021-05-18 12:56:12 +00:00
|
|
|
fi
|
2022-12-07 17:53:18 +00:00
|
|
|
case "$(uname -m)" in
|
|
|
|
x86*|i*86|amd64) : ;;
|
|
|
|
*) export CROSS_COMPILE=i386-elf- ;;
|
|
|
|
esac
|
2021-12-11 09:11:49 +00:00
|
|
|
elif [ "${arch}" = "ARMv7" ]; then
|
2022-12-07 18:55:05 +00:00
|
|
|
if [ ! -d "${cbdir}/util/crossgcc/xgcc/arm-eabi/" ]; then
|
|
|
|
make -C "${cbdir}" crossgcc-arm CPUS=$(nproc)
|
|
|
|
fi
|
2022-12-07 17:53:18 +00:00
|
|
|
case "$(uname -m)" in
|
|
|
|
arm|arm32|armv6*|armv7*) : ;;
|
|
|
|
*) export CROSS_COMPILE=arm-eabi- ;;
|
|
|
|
esac
|
2021-12-11 09:11:49 +00:00
|
|
|
elif [ "${arch}" = "AArch64" ]; then
|
2022-12-07 18:55:05 +00:00
|
|
|
if [ ! -d "${cbdir}/util/crossgcc/xgcc/aarch64-elf/" ]; then
|
|
|
|
make -C "${cbdir}" crossgcc-aarch64 CPUS=$(nproc)
|
|
|
|
fi
|
|
|
|
# aarch64 also needs armv7 toolchain for arm-trusted-firmware
|
|
|
|
if [ ! -d "${cbdir}/util/crossgcc/xgcc/arm-eabi/" ]; then
|
|
|
|
make -C "${cbdir}" crossgcc-arm CPUS=$(nproc)
|
|
|
|
fi
|
2022-12-07 17:53:18 +00:00
|
|
|
case "$(uname -m)" in
|
|
|
|
arm64|aarch64) : ;;
|
|
|
|
*) export CROSS_COMPILE=aarch64-elf- ;;
|
|
|
|
esac
|
2021-05-18 12:56:12 +00:00
|
|
|
fi
|
|
|
|
|
2022-12-07 17:53:18 +00:00
|
|
|
export PATH="$(pwd)/${cbdir}/util/crossgcc/xgcc/bin:$PATH"
|
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ ! -f "${cbfstool}" ]; then
|
2023-02-19 23:16:01 +00:00
|
|
|
./build module cbutils ${cbtree} || exit 1
|
2021-05-18 12:56:12 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f "${seavgabiosrom}" ] \
|
|
|
|
|| [ ! -f payload/seabios/seabios_libgfxinit.elf ] \
|
2023-05-08 18:45:32 +00:00
|
|
|
|| [ ! -f payload/seabios/seabios_vgarom.elf ] \
|
|
|
|
|| [ ! -f payload/seabios/seabios_normal.elf ]; then
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ "${payload_seabios}" = "y" ]; then
|
|
|
|
./build payload seabios
|
|
|
|
elif [ "${payload_grub}" = "y" ] \
|
|
|
|
&& [ "${payload_grub_withseabios}" = "y" ]; then
|
|
|
|
./build payload seabios
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2022-12-07 18:41:33 +00:00
|
|
|
if [ "${payload_memtest}" = "y" ]; then
|
|
|
|
if [ ! -f "memtest86plus/memtest" ]; then
|
|
|
|
./build module memtest86plus
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
[ -d "${romdir}/" ] || mkdir -p "${romdir}/"
|
|
|
|
rm -f "${romdir}"/*
|
|
|
|
|
2023-05-10 01:48:34 +00:00
|
|
|
if [ "${payload_grub}" = "y" ] \
|
|
|
|
|| [ "${payload_seabios_withgrub}" = "y" ]; then
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ -f "payload/grub/grub_usqwerty.cfg" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
sha1sumcmd="sha1sum resources/grub/config/grub.cfg"
|
|
|
|
grubrefchecksum="$(${sha1sumcmd} | awk '{print $1}')"
|
|
|
|
|
|
|
|
sha1sumcmd="sha1sum payload/grub/grub_usqwerty.cfg"
|
|
|
|
grubbuildchecksum="$(${sha1sumcmd} | awk '{print $1}')"
|
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ "${grubrefchecksum}" != "${grubbuildchecksum}" ]; then
|
|
|
|
rm -Rf payload/grub/
|
|
|
|
printf "Changes detected to GRUB. Re-building now:\n"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
printf "Required GRUB payloads not yet built. Building now:\n"
|
|
|
|
rm -Rf payload/grub/ # just in case
|
|
|
|
fi
|
2023-05-10 01:48:34 +00:00
|
|
|
for keymapfile in ${kmapdir}/*; do
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ ! -f "${keymapfile}" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
keymap="${keymapfile##*/}"
|
|
|
|
keymap="${keymap%.gkb}"
|
|
|
|
|
|
|
|
grubelf="payload/grub/grub_${keymap}.elf"
|
|
|
|
grubcfg="payload/grub/grub_${keymap}.cfg"
|
|
|
|
grubtestcfg="payload/grub/grub_${keymap}_test.cfg"
|
|
|
|
|
|
|
|
if [ ! -f "${grubelf}" ] || [ ! -f "${grubcfg}" ] || \
|
2022-11-14 00:51:12 +00:00
|
|
|
[ ! -f "${grubtestcfg}" ]; then
|
|
|
|
./build payload grub
|
2021-05-18 12:56:12 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2022-08-26 14:14:57 +00:00
|
|
|
if [ "${payload_uboot}" = "y" ]; then
|
2022-12-09 11:50:03 +00:00
|
|
|
if [ "${uboot_config}" = "default" ]; then
|
|
|
|
ubdir="payload/u-boot/${board}"
|
2022-08-26 14:14:57 +00:00
|
|
|
else
|
2022-12-09 11:50:03 +00:00
|
|
|
ubdir="payload/u-boot/${board}/${uboot_config}"
|
2022-08-26 14:14:57 +00:00
|
|
|
fi
|
|
|
|
|
2022-12-09 11:50:03 +00:00
|
|
|
if [ -f "${ubdir}/u-boot.elf" ]; then
|
|
|
|
ubootelf="${ubdir}/u-boot.elf"
|
|
|
|
elif [ -f "${ubdir}/u-boot" ]; then
|
|
|
|
ubootelf="${ubdir}/u-boot"
|
|
|
|
else
|
2023-05-10 01:48:34 +00:00
|
|
|
printf "Required U-Boot payload not yet built. Building now\n"
|
2022-08-26 14:14:57 +00:00
|
|
|
rm -Rf "payload/u-boot/${board}" # just in case
|
|
|
|
./build payload u-boot "${board}"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
# it is assumed that no other work will be done on the ROM
|
|
|
|
# after calling this function. therefore this function is "final"
|
2023-05-10 04:09:10 +00:00
|
|
|
moverom()
|
|
|
|
{
|
2021-05-18 12:56:12 +00:00
|
|
|
rompath="$1"
|
2023-05-10 04:09:10 +00:00
|
|
|
_newrom="$2"
|
2021-05-18 12:56:12 +00:00
|
|
|
cuttype="$3"
|
|
|
|
|
2023-05-10 04:09:10 +00:00
|
|
|
printf "\nCreating new ROM image: %s\n" "${_newrom}"
|
2021-05-18 12:56:12 +00:00
|
|
|
|
|
|
|
if [ "${cuttype}" = "4MiB IFD BIOS region" ]; then
|
2023-05-10 04:09:10 +00:00
|
|
|
dd if=${rompath} of=${_newrom} bs=1 \
|
2023-05-10 01:48:34 +00:00
|
|
|
skip=$(($(stat -c %s ${rompath}) - 0x400000)) \
|
|
|
|
count=4194304
|
2021-05-18 12:56:12 +00:00
|
|
|
else
|
2023-05-10 04:09:10 +00:00
|
|
|
cp ${rompath} ${_newrom}
|
2021-10-30 20:22:27 +00:00
|
|
|
fi
|
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
for romsize in 4 8 16; do
|
2023-05-10 01:48:34 +00:00
|
|
|
ifdgbe="descriptors/ich9m/ich9fdgbe_${romsize}m.bin"
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ "${cuttype}" = "${romsize}MiB ICH9 IFD NOR flash" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
if [ ! -f "${ifdgbe}" ]; then
|
2021-05-18 12:56:12 +00:00
|
|
|
./build descriptors ich9m
|
|
|
|
fi
|
2023-05-10 04:09:10 +00:00
|
|
|
dd if=${ifdgbe} of=${_newrom} bs=1 count=12k \
|
2023-05-10 01:48:34 +00:00
|
|
|
conv=notrunc
|
|
|
|
fi
|
|
|
|
cmpstr="${romsize}MiB ICH9 IFD NOGBE NOR flash"
|
|
|
|
ifdgbe="descriptors/ich9m/ich9fdnogbe_${romsize}m.bin"
|
|
|
|
if [ "${cuttype}" = "${cmpstr}" ]; then
|
|
|
|
if [ ! -f "${ifdgbe}" ]; then
|
|
|
|
./build descriptors ich9m
|
2021-05-18 12:56:12 +00:00
|
|
|
fi
|
2023-05-10 04:09:10 +00:00
|
|
|
dd if=${ifdgbe} of=${_newrom} bs=1 count=4k \
|
2023-05-10 01:48:34 +00:00
|
|
|
conv=notrunc
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ "${cuttype}" = "i945 laptop" ]; then
|
2023-05-10 04:09:10 +00:00
|
|
|
dd if=${_newrom} of=top64k.bin bs=1 \
|
|
|
|
skip=$(($(stat -c %s ${_newrom}) - 0x10000)) \
|
|
|
|
count=64k
|
|
|
|
dd if=top64k.bin of=${_newrom} bs=1 \
|
|
|
|
seek=$(($(stat -c %s ${_newrom}) - 0x20000)) \
|
|
|
|
count=64k conv=notrunc
|
2023-05-10 01:48:34 +00:00
|
|
|
rm -f top64k.bin
|
|
|
|
fi
|
|
|
|
}
|
2021-05-18 12:56:12 +00:00
|
|
|
|
|
|
|
# expected: configs must not specify a payload
|
2023-05-10 04:09:10 +00:00
|
|
|
mkCoreboot()
|
|
|
|
{
|
2023-05-10 01:48:34 +00:00
|
|
|
cbdir="${1}" # eg. coreboot/default
|
|
|
|
cbcfgpath="${2}" # eg. resources/coreboot/e6400nvidia_4mb/config/normal
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ ! -f "${cbcfgpath}" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
printf "\nmkCoreboot: coreboot config '%s' does not exist. " \
|
|
|
|
${cbcfgpath}
|
|
|
|
printf "Skipping build.\n"
|
2021-05-18 12:56:12 +00:00
|
|
|
return 0
|
|
|
|
fi
|
2023-05-10 01:48:34 +00:00
|
|
|
printf "%s-%s\n" "$(cat projectname)" "$(cat version)" \
|
|
|
|
> "${cbdir}/.coreboot-version"
|
2021-05-18 12:56:12 +00:00
|
|
|
(
|
2022-11-14 00:51:12 +00:00
|
|
|
if [ -f "${cbfstool}" ]; then
|
|
|
|
mv "${cbfstool}" "${cbdir}/cbfstool"
|
|
|
|
fi
|
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
cd "${cbdir}"
|
2022-11-14 00:51:12 +00:00
|
|
|
make distclean
|
|
|
|
cd -
|
|
|
|
|
|
|
|
if [ -f "${cbdir}/cbfstool" ]; then
|
|
|
|
mv "${cbdir}/cbfstool" "${cbfstool}"
|
|
|
|
fi
|
2021-05-18 12:56:12 +00:00
|
|
|
)
|
|
|
|
cp "${cbcfgpath}" "${cbdir}"/.config
|
2023-02-19 23:16:01 +00:00
|
|
|
./build module cbutils ${cbdir#coreboot/} || exit 1
|
2021-05-18 12:56:12 +00:00
|
|
|
(
|
|
|
|
cd "${cbdir}"
|
|
|
|
make -j$(nproc)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
# make a rom in /tmp/ and then print the path of that ROM
|
2023-05-10 04:09:10 +00:00
|
|
|
mkSeabiosRom()
|
|
|
|
{
|
2023-05-10 01:48:34 +00:00
|
|
|
target_cbrom="${1}" # rom to insert seabios in. will not be touched
|
|
|
|
# (a tmpfile will be made instead)
|
2021-05-18 12:56:12 +00:00
|
|
|
target_seabios_cbfs_path="${2}" # e.g. fallback/payload
|
2023-05-10 01:48:34 +00:00
|
|
|
target_opromloadonly="${3}" # TODO: purge (useless setting)
|
2021-05-18 12:56:12 +00:00
|
|
|
target_initmode="${4}" # e.g. libgfxinit
|
|
|
|
|
2023-05-08 18:45:32 +00:00
|
|
|
target_seabioself="payload/seabios/seabios_${target_initmode}.elf"
|
2021-05-18 12:56:12 +00:00
|
|
|
target_seavgabios_rom="payload/seabios/seavgabios.bin"
|
|
|
|
|
|
|
|
tmprom=$(mktemp -t coreboot_rom.XXXXXXXXXX)
|
|
|
|
|
|
|
|
cp "${target_cbrom}" "${tmprom}"
|
2023-05-10 01:48:34 +00:00
|
|
|
|
|
|
|
"${cbfstool}" "${tmprom}" add-payload -f "${target_seabioself}" \
|
|
|
|
-n ${target_seabios_cbfs_path} -c lzma || exit 1
|
|
|
|
"${cbfstool}" "${tmprom}" add-int -i 3000 -n etc/ps2-keyboard-spinup \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
if [ "${target_initmode}" = "normal" ] \
|
|
|
|
|| [ "${target_initmode}" = "libgfxinit" ]; then
|
|
|
|
"${cbfstool}" "${tmprom}" add-int -i 2 \
|
2023-05-10 04:09:10 +00:00
|
|
|
-n etc/pci-optionrom-exec || exit 1
|
2023-05-10 01:48:34 +00:00
|
|
|
elif [ "${target_initmode}" = "vgarom" ]; then # coreboot executes it
|
|
|
|
"${cbfstool}" "${tmprom}" add-int -i 0 \
|
2023-05-10 04:09:10 +00:00
|
|
|
-n etc/pci-optionrom-exec || exit 1
|
2023-05-10 01:48:34 +00:00
|
|
|
fi # for undefined modes, don't add this integer. use SeaBIOS defaults
|
|
|
|
|
|
|
|
"${cbfstool}" "${tmprom}" add-int -i 0 -n etc/optionroms-checksum \
|
2023-05-10 04:09:10 +00:00
|
|
|
|| exit 1
|
2023-05-10 01:48:34 +00:00
|
|
|
"${cbfstool}" "${tmprom}" add-int -i ${target_opromloadonly} \
|
2023-05-10 04:09:10 +00:00
|
|
|
-n etc/only-load-option-roms || exit 1
|
2021-05-18 12:56:12 +00:00
|
|
|
|
|
|
|
if [ "${target_initmode}" = "libgfxinit" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
"${cbfstool}" "${tmprom}" add -f "${target_seavgabios_rom}" \
|
|
|
|
-n vgaroms/seavgabios.bin -t raw || exit 1
|
2021-05-18 12:56:12 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
printf "%s\n" "${tmprom}"
|
|
|
|
}
|
|
|
|
|
2022-08-26 14:14:57 +00:00
|
|
|
# make a rom in /tmp/ and then print the path of that ROM
|
2023-05-10 04:09:10 +00:00
|
|
|
mkUbootRom()
|
|
|
|
{
|
2023-05-10 01:48:34 +00:00
|
|
|
target_cbrom="${1}" # rom to insert u-boot in. it won't be touched
|
|
|
|
# (a tmpfile will be made instead)
|
2022-08-26 14:14:57 +00:00
|
|
|
target_uboot_cbfs_path="${2}" # e.g. fallback/payload
|
|
|
|
target_uboot_config="${3}"
|
|
|
|
cbfstool_path="${4}"
|
|
|
|
|
|
|
|
if [ "${target_uboot_config}" = "default" ]; then
|
2022-12-09 11:50:03 +00:00
|
|
|
target_ubdir="payload/u-boot/${board}"
|
2022-08-26 14:14:57 +00:00
|
|
|
else
|
2022-12-09 11:50:03 +00:00
|
|
|
target_ubdir="payload/u-boot/${board}/${target_uboot_config}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f "${target_ubdir}/u-boot.elf" ]; then
|
|
|
|
target_ubootelf="${target_ubdir}/u-boot.elf"
|
|
|
|
elif [ -f "${target_ubdir}/u-boot" ]; then
|
|
|
|
target_ubootelf="${target_ubdir}/u-boot"
|
2022-08-26 14:14:57 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
tmprom=$(mktemp -t coreboot_rom.XXXXXXXXXX)
|
|
|
|
|
|
|
|
cp "${target_cbrom}" "${tmprom}"
|
2023-05-10 01:48:34 +00:00
|
|
|
"${cbfstool}" "${tmprom}" add-payload -f "${target_ubootelf}" \
|
|
|
|
-n ${target_uboot_cbfs_path} -c lzma || exit 1
|
2022-08-26 14:14:57 +00:00
|
|
|
|
|
|
|
printf "%s\n" "${tmprom}"
|
|
|
|
}
|
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
# make a rom in /tmp/ and then print the path of that ROM
|
2023-05-10 04:09:10 +00:00
|
|
|
mkGrubRom()
|
|
|
|
{
|
2021-05-18 12:56:12 +00:00
|
|
|
target_keymap="${1}"
|
|
|
|
target_cbrom="${2}"
|
2022-11-14 00:51:12 +00:00
|
|
|
target_grubelf_cbfs_path="${3}" # e.g. fallback/payload
|
2021-05-18 12:56:12 +00:00
|
|
|
|
|
|
|
grubelf="payload/grub/grub_${target_keymap}.elf"
|
|
|
|
grubcfg="payload/grub/grub_${target_keymap}.cfg"
|
|
|
|
grubtestcfg="payload/grub/grub_${target_keymap}_test.cfg"
|
|
|
|
|
2022-12-11 06:25:09 +00:00
|
|
|
tmprom=$(mktemp -t coreboot_rom.XXXXXXXXXX) || exit 1
|
|
|
|
cp "${target_cbrom}" "${tmprom}" || exit 1
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2023-05-10 01:48:34 +00:00
|
|
|
"${cbfstool}" "${tmprom}" add-payload -f "${grubelf}" \
|
|
|
|
-n ${target_grubelf_cbfs_path} -c lzma || exit 1
|
2021-12-29 07:10:56 +00:00
|
|
|
|
|
|
|
tmpgrubcfg=$(mktemp -t grub.cfg.XXXXXXXXXX)
|
|
|
|
tmpgrubtestcfg=$(mktemp -t grubtest.cfg.XXXXXXXXXX)
|
2021-11-27 19:06:32 +00:00
|
|
|
if [ "${grub_scan_disk}" = "ahci" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
sed \
|
|
|
|
's/set\ grub_scan_disk=\"both\"/set\ grub_scan_disk=\"ahci\"/' \
|
|
|
|
"${grubcfg}" > "${tmpgrubcfg}"
|
|
|
|
sed \
|
|
|
|
's/set\ grub_scan_disk=\"both\"/set\ grub_scan_disk=\"ahci\"/' \
|
|
|
|
"${grubtestcfg}" > "${tmpgrubtestcfg}"
|
2021-11-27 19:06:32 +00:00
|
|
|
elif [ "${grub_scan_disk}" = "ata" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
sed \
|
|
|
|
's/set\ grub_scan_disk=\"both\"/set\ grub_scan_disk=\"ata\"/' \
|
|
|
|
"${grubcfg}" > "${tmpgrubcfg}"
|
|
|
|
sed \
|
|
|
|
's/set\ grub_scan_disk=\"both\"/set\ grub_scan_disk=\"ata\"/' \
|
|
|
|
"${grubtestcfg}" > "${tmpgrubtestcfg}"
|
2021-12-29 07:10:56 +00:00
|
|
|
else
|
|
|
|
cp "${grubcfg}" "${tmpgrubcfg}"
|
|
|
|
cp "${grubtestcfg}" "${tmpgrubtestcfg}"
|
2021-11-27 19:06:32 +00:00
|
|
|
fi
|
2023-05-10 01:48:34 +00:00
|
|
|
|
|
|
|
"${cbfstool}" "${tmprom}" add -f "${tmpgrubcfg}" -n grub.cfg -t raw \
|
|
|
|
|| exit 1
|
|
|
|
"${cbfstool}" "${tmprom}" add -f "${tmpgrubtestcfg}" -n grubtest.cfg \
|
|
|
|
-t raw || exit 1
|
2021-12-29 07:36:36 +00:00
|
|
|
rm -f "${tmpgrubcfg}" "${tmpgrubtestcfg}"
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2021-10-30 23:54:53 +00:00
|
|
|
backgroundfile="background1280x800.png"
|
|
|
|
if [ "${board}" = "x60" ] || [ "${board}" = "t60_intelgpu" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
# TODO: don't hardcode this. do it in board.cfg per board
|
2021-10-30 23:54:53 +00:00
|
|
|
backgroundfile="background1024x768.png"
|
|
|
|
fi
|
|
|
|
backgroundfile="resources/grub/background/${backgroundfile}"
|
2023-05-10 01:48:34 +00:00
|
|
|
"${cbfstool}" "${tmprom}" add -f ${backgroundfile} -n background.png \
|
|
|
|
-t raw || exit 1
|
2021-10-30 23:54:53 +00:00
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
printf "%s\n" "${tmprom}"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Make separate ROM images with GRUB payload, for each supported keymap
|
2023-05-10 04:09:10 +00:00
|
|
|
mkRomsWithGrub()
|
|
|
|
{
|
2021-05-18 12:56:12 +00:00
|
|
|
tmprompath="${1}"
|
|
|
|
initmode="${2}"
|
|
|
|
displaymode="${3}"
|
build/roms: remove seabios_grubfirst logic
the intended use-case scenario was one in which vga rom initialisation
would be used, on desktop configurations, but without coreboot itself
handling vga rom initialisation, instead leaving that task to seabios
it was assumed that grub, when running on the bare metal with
build option "--with-platform=coreboot" would be able to display
like this, but it is not so when tested
in such setups (add-on gpu with grub payload), it is necessary to
extract the video bios and insert it into the coreboot rom, having
coreboot handle such execution. this is beyond the scope of lbmk,
in context of automated building, because we cannot reliably predict
things such as PCI IDs
do away with this build option entirely, for it does not serve the
intended purpose. it will be necessary to run PC GRUB instead (build
option --with-platform=i386-pc). PC GRUB can still read from CBFS,
and you could provide it as a floppy image file inside CBFS for
SeaBIOS to execute. in this setup, GRUB would function as originally
intended by the seabios_withgrub option; such a configuration is
referred to as "SeaGRUB" by the libreboot project, and experimentation
was done with it in the past, to no avail
it's better to keep things simple, in the libreboot project. simpler
for users, that is
2022-11-22 22:45:18 +00:00
|
|
|
firstpayloadname="${4}" # allow values: grub, seabios, seabios_withgrub
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2023-05-10 01:48:34 +00:00
|
|
|
x=${tmprompath}
|
|
|
|
y=${seabios_opromloadonly}
|
|
|
|
z=${initmode}
|
|
|
|
if [ "${payload_grub_withseabios}" = "y" ] \
|
2023-05-10 04:09:10 +00:00
|
|
|
&& [ "${firstpayloadname}" = "grub" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
mv "$(mkSeabiosRom "${x}" "seabios.elf" "${y}" "${z}")" \
|
|
|
|
"${tmprompath}"
|
|
|
|
elif [ "${payload_seabios_withgrub}" ] \
|
2023-05-10 04:09:10 +00:00
|
|
|
&& [ "${firstpayloadname}" != "grub" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
mv "$(mkSeabiosRom "${x}" "fallback/payload" "$y" "$z")" \
|
|
|
|
"${tmprompath}"
|
2022-11-14 00:51:12 +00:00
|
|
|
fi
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2022-11-14 00:51:12 +00:00
|
|
|
keymaps=""
|
|
|
|
if [ -z ${keyboard_layouts} ]; then
|
2023-05-10 04:09:10 +00:00
|
|
|
for kmapfile in "${kmapdir}"/*; do
|
2023-05-10 03:40:48 +00:00
|
|
|
keymaps="${keymaps} ${kmapfile}"
|
|
|
|
done
|
2022-11-14 00:51:12 +00:00
|
|
|
else
|
|
|
|
for keymapname in ${keyboard_layouts}; do
|
2023-05-10 01:48:34 +00:00
|
|
|
keymaps="${keymaps} ${kmapdir}/${keymapname}.gkb"
|
2022-11-14 00:51:12 +00:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
for keymapfile in ${keymaps}; do
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ ! -f "${keymapfile}" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
keymap="${keymapfile##*/}"
|
|
|
|
keymap="${keymap%.gkb}"
|
|
|
|
|
|
|
|
grub_path_in_cbfs="fallback/payload"
|
|
|
|
if [ "${firstpayloadname}" != "grub" ]; then
|
|
|
|
grub_path_in_cbfs="img/grub2"
|
|
|
|
fi
|
|
|
|
|
2023-05-10 01:48:34 +00:00
|
|
|
# evil bofh rfc 2646 compliance hack
|
|
|
|
x=${keymap}
|
|
|
|
y=${tmprompath}
|
|
|
|
z=${grub_path_in_cbfs}
|
|
|
|
tmpgrubrom="$(mkGrubRom "${x}" "${y}" "${z}")"
|
|
|
|
|
2023-05-10 04:09:10 +00:00
|
|
|
_newrom="${romdir}/${firstpayloadname}_${board}_${initmode}_"
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ "${initmode}" = "normal" ]; then
|
2023-05-10 04:09:10 +00:00
|
|
|
_newrom="${_newrom}${keymap}.rom"
|
2021-05-18 12:56:12 +00:00
|
|
|
else
|
2023-05-10 04:09:10 +00:00
|
|
|
_newrom="${_newrom}${displaymode}_${keymap}.rom"
|
2021-05-18 12:56:12 +00:00
|
|
|
fi
|
2023-05-10 04:09:10 +00:00
|
|
|
moverom "${tmpgrubrom}" "${_newrom}" "${romtype}"
|
2021-05-18 12:56:12 +00:00
|
|
|
rm -f "${tmpgrubrom}"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# Main ROM building function. This calls all other functions
|
2023-05-10 04:09:10 +00:00
|
|
|
mkRoms()
|
|
|
|
{
|
2021-11-21 15:57:40 +00:00
|
|
|
cbcfgpath="${1}"
|
|
|
|
displaymode="${2}"
|
|
|
|
initmode="${3}"
|
2021-05-18 12:56:12 +00:00
|
|
|
|
|
|
|
if [ ! -f "${cbcfgpath}" ]; then
|
|
|
|
printf "'%s' does not exist. Skipping build for %s %s %s\n" \
|
2023-05-10 01:48:34 +00:00
|
|
|
${cbcfgpath} ${board} \
|
|
|
|
${displaymode} ${initmode}
|
2021-05-18 12:56:12 +00:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkCoreboot "${cbdir}" "${cbcfgpath}"
|
|
|
|
|
2023-05-10 01:48:34 +00:00
|
|
|
if [ "${displaymode}" = "txtmode" ] \
|
|
|
|
&& [ "${payload_memtest}" = "y" ]; then
|
|
|
|
"${cbfstool}" "${corebootrom}" add-payload \
|
|
|
|
-f memtest86plus/memtest -n img/memtest \
|
|
|
|
-c lzma || exit 1
|
2021-11-01 02:51:10 +00:00
|
|
|
fi
|
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ "${payload_seabios}" = "y" ]; then
|
|
|
|
if [ "${payload_seabios_withgrub}" = "n" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
x=${corebootrom}
|
|
|
|
y=${seabios_opromloadonly}
|
|
|
|
z=${initmode}
|
|
|
|
t=$(mkSeabiosRom "$x" "fallback/payload" "$y" "$z")
|
2023-05-10 04:09:10 +00:00
|
|
|
|
|
|
|
_newrom="${romdir}/seabios_${board}_${initmode}.rom"
|
|
|
|
if [ "${initmode}" != "normal" ]; then
|
|
|
|
_newrom="${_newrom%.rom}_${displaymode}.rom"
|
2021-05-18 12:56:12 +00:00
|
|
|
fi
|
|
|
|
|
2023-05-10 04:09:10 +00:00
|
|
|
moverom "${t}" "${_newrom}" "${romtype}"
|
2023-05-10 01:48:34 +00:00
|
|
|
rm -f "${t}"
|
2021-05-18 12:56:12 +00:00
|
|
|
else
|
|
|
|
tmprom=$(mktemp -t coreboot_rom.XXXXXXXXXX)
|
|
|
|
cp "${corebootrom}" "${tmprom}"
|
2023-05-10 01:48:34 +00:00
|
|
|
mkRomsWithGrub "${tmprom}" "${initmode}" \
|
|
|
|
"${displaymode}" "seabios_withgrub"
|
2021-05-18 12:56:12 +00:00
|
|
|
rm -f "${tmprom}"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${payload_grub}" = "y" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
mkRomsWithGrub "${corebootrom}" "${initmode}" \
|
|
|
|
"${displaymode}" "grub"
|
2021-05-18 12:56:12 +00:00
|
|
|
fi
|
2022-08-26 14:14:57 +00:00
|
|
|
|
|
|
|
if [ "${payload_uboot}" = "y" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
x=${corebootrom}
|
|
|
|
y=${uboot_config}
|
|
|
|
z=${cbfstool}
|
|
|
|
tmpubootrom="$(mkUbootRom "$x" "fallback/payload" "$y" "$z")"
|
2022-08-26 14:14:57 +00:00
|
|
|
if [ "${initmode}" = "normal" ]; then
|
2023-05-10 04:09:10 +00:00
|
|
|
_newrom="${romdir}/uboot_payload_${board}_"
|
|
|
|
_newrom="${_newrom}${initmode}.rom"
|
2022-08-26 14:14:57 +00:00
|
|
|
else
|
2023-05-10 04:09:10 +00:00
|
|
|
_newrom="${romdir}/uboot_payload_${board}_"
|
|
|
|
_newrom="${_newrom}${initmode}_${displaymode}.rom"
|
2022-08-26 14:14:57 +00:00
|
|
|
fi
|
2023-05-10 04:09:10 +00:00
|
|
|
moverom "${tmpubootrom}" "${_newrom}" "${romtype}"
|
2022-08-26 14:14:57 +00:00
|
|
|
rm -f "${tmpubootrom}"
|
|
|
|
fi
|
2021-05-18 12:56:12 +00:00
|
|
|
}
|
|
|
|
|
2022-11-14 00:51:12 +00:00
|
|
|
if [ -z ${displaymodes} ]; then
|
|
|
|
initmode="libgfxinit"
|
|
|
|
for displaymode in corebootfb txtmode; do
|
2023-05-10 01:48:34 +00:00
|
|
|
cbcfgpath="resources/coreboot/${board}/config/${initmode}_"
|
|
|
|
cbcfgpath="${cbcfgpath}${displaymode}"
|
2022-11-14 00:51:12 +00:00
|
|
|
mkRoms "${cbcfgpath}" "${displaymode}" "${initmode}"
|
|
|
|
done
|
|
|
|
|
|
|
|
initmode="vgarom"
|
|
|
|
for displaymode in vesafb txtmode; do
|
2023-05-10 01:48:34 +00:00
|
|
|
cbcfgpath="resources/coreboot/${board}/config/${initmode}_"
|
|
|
|
cbcfgpath="${cbcfgpath}${displaymode}"
|
2022-11-14 00:51:12 +00:00
|
|
|
mkRoms "${cbcfgpath}" "${displaymode}" "${initmode}"
|
|
|
|
done
|
|
|
|
|
|
|
|
initmode="normal"
|
|
|
|
displaymode="txtmode"
|
|
|
|
cbcfgpath="resources/coreboot/${board}/config/${initmode}"
|
2021-11-21 15:57:40 +00:00
|
|
|
mkRoms "${cbcfgpath}" "${displaymode}" "${initmode}"
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2022-11-14 00:51:12 +00:00
|
|
|
else
|
|
|
|
echo "special displaymode defined as $displaymodes"
|
|
|
|
initmode="libgfxinit"
|
|
|
|
for displaymode in ${displaymodes}; do
|
2023-05-10 01:48:34 +00:00
|
|
|
cbcfgpath="resources/coreboot/${board}/config/${initmode}_"
|
|
|
|
cbcfgpath="${cbcfgpath}${displaymode}"
|
2022-11-14 00:51:12 +00:00
|
|
|
mkRoms "${cbcfgpath}" "${displaymode}" "${initmode}"
|
|
|
|
done
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2022-11-14 00:51:12 +00:00
|
|
|
initmode="vgarom"
|
|
|
|
for displaymode in ${displaymodes}; do
|
2023-05-10 01:48:34 +00:00
|
|
|
cbcfgpath="resources/coreboot/${board}/config/${initmode}_"
|
|
|
|
cbcfgpath="${cbcfgpath}${displaymode}"
|
2022-11-14 00:51:12 +00:00
|
|
|
mkRoms "${cbcfgpath}" "${displaymode}" "${initmode}"
|
|
|
|
done
|
|
|
|
fi
|
2021-05-18 12:56:12 +00:00
|
|
|
|
|
|
|
(
|
|
|
|
cd "${cbdir}"
|
|
|
|
make distclean
|
|
|
|
)
|