2021-06-03 11:47:08 +00:00
|
|
|
#!/usr/bin/env bash
|
2021-05-18 12:56:12 +00:00
|
|
|
|
|
|
|
# helper script: create ROM images for a given mainboard
|
|
|
|
#
|
|
|
|
# Copyright (C) 2020,2021 Leah Rowe <info@minifree.org>
|
2021-12-08 13:39:31 +00:00
|
|
|
# Copyright (C) 2021 Vitali64 <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)"
|
|
|
|
|
2022-11-14 00:51:12 +00:00
|
|
|
displaymodes=""
|
|
|
|
payloads=""
|
|
|
|
keyboard_layouts=""
|
|
|
|
while [[ $# > 0 ]]; do
|
|
|
|
case ${1} in
|
|
|
|
-d)
|
|
|
|
displaymodes+="${2}"
|
|
|
|
shift ;;
|
|
|
|
-p)
|
|
|
|
payloads+="${2}"
|
|
|
|
shift ;;
|
|
|
|
-k)
|
|
|
|
keyboard_layouts+="${2}"
|
|
|
|
shift ;;
|
|
|
|
*)
|
|
|
|
board=${1} ;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2022-11-14 00:51:12 +00:00
|
|
|
echo "board is $board , kb is ${keyboard_layouts} , displaymode is ${displaymodes} , payloads is ${payloads}"
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ ! -d "resources/coreboot/${board}" ]; then
|
|
|
|
printf "build/roms: Target %s does not exist in the %s build system. Skipping build.\n" "${projectname}" "${board}"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f "resources/coreboot/${board}/board.cfg" ]; then
|
|
|
|
printf "build/roms: Target %s does not have a board.cfg. Skipping build.\n" "${board}"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2021-11-27 19:06:32 +00:00
|
|
|
|
|
|
|
# Workaround to grub's slow boot
|
2021-11-30 18:44:08 +00:00
|
|
|
grub_scan_disk="undefined" # both: scan ata and ahci (slow), there is ata and ahci too
|
2021-11-27 19:06:32 +00:00
|
|
|
# as an option
|
2021-05-18 12:56:12 +00:00
|
|
|
cbtree="undefined"
|
|
|
|
romtype="normal" # optional parameter in board.cfg. "normal" is default
|
|
|
|
arch="undefined"
|
|
|
|
# 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"
|
|
|
|
payload_seabios_withgrub="n" # i386-coreboot grub accessible from SeaBIOS boot menu
|
|
|
|
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
|
|
|
|
source "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
|
|
|
|
printf "build/roms: Target %s does not define grub_scan_disk. Defaulting to 'both'.\n" "${board}"
|
|
|
|
grub_scan_disk="both"
|
|
|
|
fi
|
|
|
|
|
2021-11-30 18:31:19 +00:00
|
|
|
if [ "${grub_scan_disk}" != "both" ] && \
|
|
|
|
[ "${grub_scan_disk}" != "ata" ] && \
|
2021-11-27 19:06:32 +00:00
|
|
|
[ "${grub_scan_disk}" != "ahci" ]; then
|
2021-11-30 18:40:27 +00:00
|
|
|
printf "build/roms: Target %s defines an invalid grub_scan_disk setting. Defaulting to 'both'.\n" "${board}"
|
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
|
|
|
|
printf "build/roms: Target %s does not define a coreboot tree. Skipping build.\n" "${board}"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ "${arch}" = "undefined" ]; then
|
|
|
|
printf "build/roms: Target %s does not define a CPU type. Skipping build.\n" "${board}"
|
|
|
|
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"
|
|
|
|
payload_seabios_withgrub="y" # if grub-first works, then seabios-with-grub will also work
|
|
|
|
fi
|
|
|
|
if [ "${payload_seabios_withgrub}" = "y" ]; then
|
|
|
|
payload_seabios="y" # if seabios-with-grub works, then SeaBIOS-alone should also work
|
|
|
|
fi
|
|
|
|
# NOTE: reverse logic must not be applied. If SeaBIOS-with-GRUB works, that doesn't
|
|
|
|
# necessarily mean GRUB-with-SeaBIOS will work nicely. for example, the board might
|
|
|
|
# only have an add-on GPU available, where it's recommended to boot SeaBIOS first
|
2022-08-26 14:14:57 +00:00
|
|
|
if [ "${payload_grub}" != "y" ] && [ "${payload_seabios}" != "y" ] && [ "${payload_uboot}" != "y" ]; then
|
2021-05-18 12:56:12 +00:00
|
|
|
while true; do
|
|
|
|
for configfile in "resources/coreboot/${board}/config/"*; do
|
|
|
|
if [ -f "${configfile}" ]; then
|
|
|
|
printf "ERROR build/roms: Target '%s' does not define a payload. Exiting.\n" "${board}"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
break
|
|
|
|
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
|
|
|
|
|
2021-11-01 02:51:10 +00:00
|
|
|
if [ "${payload_memtest}" = "y" ]; then
|
|
|
|
if [ ! -f "memtest86plus/memtest" ]; then
|
|
|
|
./build module memtest86plus
|
|
|
|
fi
|
|
|
|
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"
|
|
|
|
payload_seabios_withgrub="n" # i386-coreboot grub accessible from SeaBIOS boot 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
|
|
|
|
|
|
|
|
if [ "${arch}" = "x86_32" ] || [ "${arch}" = "x86_64" ]; then
|
|
|
|
if [ ! -d "${cbdir}/util/crossgcc/xgcc/i386-elf/" ]; then
|
|
|
|
(
|
2021-05-22 19:28:06 +00:00
|
|
|
cat version > "${cbdir}/.coreboot-version"
|
2021-05-18 12:56:12 +00:00
|
|
|
cd "${cbdir}"
|
|
|
|
make crossgcc-i386 CPUS=$(nproc) # even for 64-bit machines, coreboot builds
|
|
|
|
# 32-bit ROM images, so we only need to worry about i386-elf
|
|
|
|
)
|
|
|
|
fi
|
2021-12-11 09:11:49 +00:00
|
|
|
elif [ "${arch}" = "ARMv7" ]; then
|
2022-08-26 12:06:45 +00:00
|
|
|
(
|
|
|
|
cat version > "${cbdir}/.coreboot-version"
|
|
|
|
cd "${cbdir}"
|
|
|
|
make crossgcc-arm CPUS=$(nproc) # This is for armv7, doesn't apply to aarch64
|
|
|
|
)
|
2021-12-11 09:11:49 +00:00
|
|
|
elif [ "${arch}" = "AArch64" ]; then
|
2022-08-26 12:06:45 +00:00
|
|
|
(
|
|
|
|
cat version > "${cbdir}/.coreboot-version"
|
|
|
|
cd "${cbdir}"
|
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
|
|
|
make crossgcc-aarch64 CPUS=$(nproc) # This is for aarch64, doesn't apply to armv7
|
2022-08-26 12:06:45 +00:00
|
|
|
)
|
2021-05-18 12:56:12 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f "${cbfstool}" ]; then
|
|
|
|
./build module cbutils ${cbtree}
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f "${seavgabiosrom}" ] \
|
|
|
|
|| [ ! -f payload/seabios/seabios_libgfxinit.elf ] \
|
|
|
|
|| [ ! -f payload/seabios/seabios_vgarom.elf ]; then
|
|
|
|
if [ "${payload_seabios}" = "y" ]; then
|
|
|
|
./build payload seabios
|
|
|
|
elif [ "${payload_grub}" = "y" ] \
|
|
|
|
&& [ "${payload_grub_withseabios}" = "y" ]; then
|
|
|
|
./build payload seabios
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
[ -d "${romdir}/" ] || mkdir -p "${romdir}/"
|
|
|
|
rm -f "${romdir}"/*
|
|
|
|
|
|
|
|
if [ "${payload_grub}" = "y" ] || [ "${payload_seabios_withgrub}" = "y" ]; then
|
|
|
|
if [ -f "payload/grub/grub_usqwerty.cfg" ]; then
|
2022-11-29 20:00:51 +00:00
|
|
|
grubrefchecksum="$(sha1sum resources/grub/config/grub.cfg | awk '{print $1}')"
|
|
|
|
grubbuildchecksum="$(sha1sum payload/grub/grub_usqwerty.cfg | 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
|
|
|
|
for keymapfile in resources/grub/keymap/*; do
|
|
|
|
|
|
|
|
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
|
|
|
|
if [ "${uboot_config}" = "default" ] && \
|
|
|
|
[ -f "payload/u-boot/${board}/u-boot.elf" ]; then
|
|
|
|
ubootelf="payload/u-boot/${board}/u-boot.elf"
|
|
|
|
else
|
|
|
|
ubootelf="payload/u-boot/${board}/${uboot_config}/u-boot.elf"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f "${ubootelf}" ]; then
|
|
|
|
printf "Required U-Boot payloads not yet built. Building now:\n"
|
|
|
|
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"
|
|
|
|
moverom() {
|
|
|
|
rompath="$1"
|
|
|
|
newrompath="$2"
|
|
|
|
cuttype="$3"
|
|
|
|
|
|
|
|
printf "\nCreating new ROM image: %s\n" "${newrompath}"
|
|
|
|
|
|
|
|
if [ "${cuttype}" = "4MiB IFD BIOS region" ]; then
|
|
|
|
dd if=${rompath} of=${newrompath} bs=1 skip=$[$(stat -c %s ${rompath}) - 0x400000] count=4194304
|
|
|
|
else
|
|
|
|
cp ${rompath} ${newrompath}
|
2021-10-30 20:22:27 +00:00
|
|
|
fi
|
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
for romsize in 4 8 16; do
|
|
|
|
if [ "${cuttype}" = "${romsize}MiB ICH9 IFD NOR flash" ]; then
|
|
|
|
if [ ! -f "descriptors/ich9m/ich9fdgbe_${romsize}m.bin" ]; then
|
|
|
|
./build descriptors ich9m
|
|
|
|
fi
|
|
|
|
dd if=descriptors/ich9m/ich9fdgbe_${romsize}m.bin of=${newrompath} bs=1 count=12k conv=notrunc
|
|
|
|
fi
|
2022-11-14 00:51:12 +00:00
|
|
|
if [ "${cuttype}" = "${romsize}MiB ICH9 IFD NOGBE NOR flash" ]; then
|
|
|
|
if [ ! -f "descriptors/ich9m/ich9fdnogbe_${romsize}m.bin" ]; then
|
|
|
|
./build descriptors ich9m
|
|
|
|
fi
|
|
|
|
dd if=descriptors/ich9m/ich9fdnogbe_${romsize}m.bin of=${newrompath} bs=1 count=4k conv=notrunc
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ "${cuttype}" = "i945 laptop" ]; then
|
|
|
|
dd if=${newrompath} of=top64k.bin bs=1 skip=$[$(stat -c %s ${newrompath}) - 0x10000] count=64k
|
|
|
|
dd if=top64k.bin of=${newrompath} bs=1 seek=$[$(stat -c %s ${newrompath}) - 0x20000] count=64k conv=notrunc
|
|
|
|
rm -f top64k.bin
|
|
|
|
fi
|
|
|
|
}
|
2021-05-18 12:56:12 +00:00
|
|
|
|
|
|
|
# expected: configs must not specify a payload
|
|
|
|
mkCoreboot() {
|
|
|
|
cbdir="${1}" # e.g. coreboot/default
|
2022-12-05 00:10:07 +00:00
|
|
|
cbcfgpath="${2}" # e.g. resources/coreboot/x200_8mb/config/libgfxinit_txtmode
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ ! -f "${cbcfgpath}" ]; then
|
|
|
|
printf "\nmkCoreboot: Coreboot config '%s' does not exist. Skipping build.\n" \
|
|
|
|
"${cbcfgpath}"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
printf "%s-%s\n" "$(cat projectname)" "$(cat version)" > "${cbdir}/.coreboot-version"
|
|
|
|
(
|
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
|
2022-08-27 18:25:43 +00:00
|
|
|
./build module cbutils ${cbdir#coreboot/}
|
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
|
|
|
|
make_seabios_rom() {
|
|
|
|
target_cbrom="${1}" # rom to insert seabios in. this rom won't be touched
|
|
|
|
# a tmpfile will be made instead
|
|
|
|
target_seabios_cbfs_path="${2}" # e.g. fallback/payload
|
|
|
|
target_opromloadonly="${3}" # 0 or 1. if 1, only load but don't execute oproms
|
|
|
|
target_initmode="${4}" # e.g. libgfxinit
|
|
|
|
|
|
|
|
if [ "${target_initmode}" = "normal" ]; then
|
|
|
|
target_seabioself="payload/seabios/seabios_vgarom.elf"
|
|
|
|
# if normal, etc/pci-optionrom-exec will be set to 2
|
|
|
|
else
|
|
|
|
target_seabioself="payload/seabios/seabios_${target_initmode}.elf"
|
|
|
|
# if libgfxinit, etc/pci-optionrom-exec will be set to 2
|
|
|
|
# if vgarom, etc/pci-optionrom-exec will be set to 0
|
|
|
|
fi
|
|
|
|
target_seavgabios_rom="payload/seabios/seavgabios.bin"
|
|
|
|
|
|
|
|
tmprom=$(mktemp -t coreboot_rom.XXXXXXXXXX)
|
|
|
|
|
|
|
|
cp "${target_cbrom}" "${tmprom}"
|
|
|
|
"${cbfstool}" "${tmprom}" add-payload -f "${target_seabioself}" -n ${target_seabios_cbfs_path} -c lzma
|
|
|
|
"${cbfstool}" "${tmprom}" add-int -i 3000 -n etc/ps2-keyboard-spinup
|
|
|
|
if [ "${target_initmode}" = "normal" ] || [ "${target_initmode}" = "libgfxinit" ]; then
|
|
|
|
"${cbfstool}" "${tmprom}" add-int -i 2 -n etc/pci-optionrom-exec
|
|
|
|
elif [ "${target_initmode}" = "vgarom" ]; then
|
|
|
|
"${cbfstool}" "${tmprom}" add-int -i 0 -n etc/pci-optionrom-exec
|
|
|
|
fi # for undefined modes, don't add this integer. rely on SeaBIOS defaults
|
|
|
|
"${cbfstool}" "${tmprom}" add-int -i 0 -n etc/optionroms-checksum
|
|
|
|
"${cbfstool}" "${tmprom}" add-int -i ${target_opromloadonly} -n etc/only-load-option-roms
|
|
|
|
|
|
|
|
if [ "${target_initmode}" = "libgfxinit" ]; then
|
2022-11-14 00:51:12 +00:00
|
|
|
"${cbfstool}" "${tmprom}" add -f "${target_seavgabios_rom}" -n vgaroms/seavgabios.bin -t raw
|
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
|
|
|
|
make_uboot_payload_rom() {
|
|
|
|
target_cbrom="${1}" # rom to insert u-boot in. this rom won't be touched
|
|
|
|
# a tmpfile will be made instead
|
|
|
|
target_uboot_cbfs_path="${2}" # e.g. fallback/payload
|
|
|
|
target_uboot_config="${3}"
|
|
|
|
cbfstool_path="${4}"
|
|
|
|
|
|
|
|
if [ "${target_uboot_config}" = "default" ]; then
|
|
|
|
target_ubootelf="payload/u-boot/${board}/u-boot.elf"
|
|
|
|
else
|
|
|
|
target_ubootelf="payload/u-boot/${board}/${target_uboot_config}/u-boot.elf"
|
|
|
|
fi
|
|
|
|
|
|
|
|
tmprom=$(mktemp -t coreboot_rom.XXXXXXXXXX)
|
|
|
|
|
|
|
|
cp "${target_cbrom}" "${tmprom}"
|
|
|
|
"${cbfstool}" "${tmprom}" add-payload -f "${target_ubootelf}" -n ${target_uboot_cbfs_path} -c lzma
|
|
|
|
|
|
|
|
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
|
|
|
|
make_grubrom_from_keymap() {
|
|
|
|
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"
|
|
|
|
|
|
|
|
tmprom=$(mktemp -t coreboot_rom.XXXXXXXXXX)
|
|
|
|
cp "${target_cbrom}" "${tmprom}"
|
|
|
|
|
2022-11-14 00:51:12 +00:00
|
|
|
"${cbfstool}" "${tmprom}" add-payload -f "${grubelf}" -n ${target_grubelf_cbfs_path} -c lzma
|
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
|
2021-12-29 07:10:56 +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
|
2021-12-29 07:10:56 +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}"
|
|
|
|
else
|
|
|
|
cp "${grubcfg}" "${tmpgrubcfg}"
|
|
|
|
cp "${grubtestcfg}" "${tmpgrubtestcfg}"
|
2021-11-27 19:06:32 +00:00
|
|
|
fi
|
2022-11-14 00:51:12 +00:00
|
|
|
"${cbfstool}" "${tmprom}" add -f "${tmpgrubcfg}" -n grub.cfg -t raw
|
|
|
|
"${cbfstool}" "${tmprom}" add -f "${tmpgrubtestcfg}" -n grubtest.cfg -t raw
|
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
|
|
|
|
# TODO: don't hardcode this check. do it in board.cfg per board
|
|
|
|
backgroundfile="background1024x768.png"
|
|
|
|
fi
|
|
|
|
backgroundfile="resources/grub/background/${backgroundfile}"
|
2022-11-14 00:51:12 +00:00
|
|
|
"${cbfstool}" "${tmprom}" add -f ${backgroundfile} -n background.png -t raw
|
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
|
|
|
|
mkRomsWithGrub() {
|
|
|
|
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
|
|
|
|
|
|
|
if [ "${payload_grub_withseabios}" = "y" ] && [ "${firstpayloadname}" = "grub" ]; then
|
2022-11-14 00:51:12 +00:00
|
|
|
mv "$(make_seabios_rom "${tmprompath}" "seabios.elf" "${seabios_opromloadonly}" "${initmode}")" "${tmprompath}"
|
2021-05-18 12:56:12 +00:00
|
|
|
elif [ "${payload_seabios_withgrub}" ] && [ "${firstpayloadname}" != "grub" ]; then
|
2022-11-14 00:51:12 +00:00
|
|
|
mv "$(make_seabios_rom "${tmprompath}" "fallback/payload" "${seabios_opromloadonly}" "${initmode}")" "${tmprompath}"
|
|
|
|
fi
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2022-11-14 00:51:12 +00:00
|
|
|
keymaps=""
|
|
|
|
if [ -z ${keyboard_layouts} ]; then
|
|
|
|
keymaps="resources/grub/keymap/*"
|
|
|
|
else
|
|
|
|
for keymapname in ${keyboard_layouts}; do
|
|
|
|
keymaps+="resources/grub/keymap/${keymapname}.gkb"
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
for keymapfile in ${keymaps}; do
|
|
|
|
echo "keymaps is $keymaps, keymapfile is $keymapfile"
|
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
|
|
|
|
|
2022-11-14 00:51:12 +00:00
|
|
|
tmpgrubrom="$(make_grubrom_from_keymap "${keymap}" "${tmprompath}" "${grub_path_in_cbfs}")"
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ "${initmode}" = "normal" ]; then
|
|
|
|
newrompath="${romdir}/${firstpayloadname}_${board}_${initmode}_${keymap}.rom"
|
|
|
|
else
|
|
|
|
newrompath="${romdir}/${firstpayloadname}_${board}_${initmode}_${displaymode}_${keymap}.rom"
|
|
|
|
fi
|
|
|
|
moverom "${tmpgrubrom}" "${newrompath}" "${romtype}"
|
|
|
|
rm -f "${tmpgrubrom}"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# Main ROM building function. This calls all other functions
|
|
|
|
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" \
|
|
|
|
"${cbcfgpath}" "${board}" "${displaymode}" "${initmode}"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkCoreboot "${cbdir}" "${cbcfgpath}"
|
|
|
|
|
2021-11-01 02:51:10 +00:00
|
|
|
if [ "${displaymode}" = "txtmode" ] && [ "${payload_memtest}" = "y" ]; then
|
|
|
|
"${cbfstool}" "${corebootrom}" add-payload -f memtest86plus/memtest -n img/memtest -c lzma
|
|
|
|
fi
|
|
|
|
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ "${payload_seabios}" = "y" ]; then
|
|
|
|
if [ "${payload_seabios_withgrub}" = "n" ]; then
|
2022-11-14 00:51:12 +00:00
|
|
|
tmpseabiosrom="$(make_seabios_rom "${corebootrom}" "fallback/payload" "${seabios_opromloadonly}" "${initmode}")"
|
2021-05-18 12:56:12 +00:00
|
|
|
if [ "${initmode}" = "normal" ]; then
|
|
|
|
newrompath="${romdir}/seabios_${board}_${initmode}.rom"
|
|
|
|
else
|
|
|
|
newrompath="${romdir}/seabios_${board}_${initmode}_${displaymode}.rom"
|
|
|
|
fi
|
|
|
|
|
|
|
|
moverom "${tmpseabiosrom}" "${newrompath}" "${romtype}"
|
|
|
|
rm -f "${tmpseabiosrom}"
|
|
|
|
else
|
|
|
|
tmprom=$(mktemp -t coreboot_rom.XXXXXXXXXX)
|
|
|
|
cp "${corebootrom}" "${tmprom}"
|
|
|
|
mkRomsWithGrub "${tmprom}" "${initmode}" "${displaymode}" "seabios_withgrub"
|
|
|
|
rm -f "${tmprom}"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${payload_grub}" = "y" ]; then
|
|
|
|
mkRomsWithGrub "${corebootrom}" "${initmode}" "${displaymode}" "grub"
|
|
|
|
fi
|
2022-08-26 14:14:57 +00:00
|
|
|
|
|
|
|
if [ "${payload_uboot}" = "y" ]; then
|
|
|
|
tmpubootrom="$(make_uboot_payload_rom "${corebootrom}" "fallback/payload" "${uboot_config}" "${cbfstool}")"
|
|
|
|
if [ "${initmode}" = "normal" ]; then
|
|
|
|
newrompath="${romdir}/uboot_payload_${board}_${initmode}.rom"
|
|
|
|
else
|
|
|
|
newrompath="${romdir}/uboot_payload_${board}_${initmode}_${displaymode}.rom"
|
|
|
|
fi
|
|
|
|
moverom "${tmpubootrom}" "${newrompath}" "${romtype}"
|
|
|
|
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
|
|
|
|
cbcfgpath="resources/coreboot/${board}/config/${initmode}_${displaymode}"
|
|
|
|
mkRoms "${cbcfgpath}" "${displaymode}" "${initmode}"
|
|
|
|
done
|
|
|
|
|
|
|
|
initmode="vgarom"
|
|
|
|
for displaymode in vesafb txtmode; do
|
|
|
|
cbcfgpath="resources/coreboot/${board}/config/${initmode}_${displaymode}"
|
|
|
|
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
|
|
|
|
cbcfgpath="resources/coreboot/${board}/config/${initmode}_${displaymode}"
|
|
|
|
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
|
|
|
|
cbcfgpath="resources/coreboot/${board}/config/${initmode}_${displaymode}"
|
|
|
|
mkRoms "${cbcfgpath}" "${displaymode}" "${initmode}"
|
|
|
|
done
|
|
|
|
fi
|
2021-05-18 12:56:12 +00:00
|
|
|
|
|
|
|
(
|
|
|
|
cd "${cbdir}"
|
|
|
|
make distclean
|
|
|
|
)
|