2023-06-13 11:09:01 +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>
|
2023-06-13 11:09:01 +00:00
|
|
|
# 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 19:22:17 +00:00
|
|
|
cbcfgdir="resources/coreboot"
|
2023-05-12 20:53:06 +00:00
|
|
|
boardcfgdir=""
|
2023-05-10 01:48:34 +00:00
|
|
|
kmapdir="resources/grub/keymap"
|
2022-11-14 00:51:12 +00:00
|
|
|
displaymodes=""
|
|
|
|
payloads=""
|
|
|
|
keyboard_layouts=""
|
2023-05-12 15:55:45 +00:00
|
|
|
board=""
|
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"
|
2023-05-12 20:53:06 +00:00
|
|
|
payload_grub_withseabios="n" # seabios chainloaded from grub
|
2021-05-18 12:56:12 +00:00
|
|
|
payload_seabios="n"
|
2023-05-12 20:53:06 +00:00
|
|
|
payload_seabios_withgrub="n" # i386-coreboot grub from SeaBIOS boot menu
|
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"
|
2023-05-12 15:55:45 +00:00
|
|
|
|
|
|
|
romdir=""
|
|
|
|
cbdir=""
|
|
|
|
cbfstool=""
|
|
|
|
corebootrom=""
|
|
|
|
seavgabiosrom=""
|
|
|
|
|
build/boot/roms: Support removing microcode
From now on, the following rules are available for all
mainboards, in resources/coreboot/boardname/board.cfg:
* blobs_required="n" or "y"
* microcode_required="n" or "y"
The blobs setting, if set to "n", simply renames filename.rom to
filename_noblobs.rom.
The microcode setting, if set to "n", copies the ROM (with or
without _noblobs) to filename_nomicrocode.rom (if blobs="n",
it would be filename_noblobs_nomicrocode.rom).
Where "nomicrocode" is set, ROMs with microcode will still be
provided by lbmk and in relesase, but ROMs will also be provided
alongside it that lacks any microcode updates.
If the *original* ROM already lacks microcode updates, then the
original ROM will be *renamed* to include "nomicrocode" in the name.
This is done on images for ARM platforms, for instance, where
microcode is never used whatsoever.
Example filenames now generated:
seabios_e6400_4mb_libgfxinit_corebootfb_noblobs_nomicrocode.rom
seabios_e6400_4mb_libgfxinit_corebootfb_noblobs.rom
seabios_withgrub_hp8300usdt_16mb_libgfxinit_corebootfb_colemak_nomicrocode.rom
seabios_withgrub_hp8300usdt_16mb_libgfxinit_corebootfb_colemak.rom
uboot_payload_gru_kevin_libgfxinit_corebootfb_noblobs_nomicrocode.rom
A vocal minority of people were not happy with some of the changes
made in Libreboot last year, including on existing supported
hardware from before those changes were made. I did this before the
last release, out of respect:
https://libreboot.org/news/gm45microcode.html
(re-add mitigations for no-microcode setup on GM45)
This new change is done as an further, extended courtesy. Tested
and works fine. (testing using cbfstool-print)
Actual Libreboot policy about binary blobs is nuanced. See:
https://libreboot.org/news/policy.html (reduction policy) and:
https://libreboot.org/freedom-status.html (implementation)
Well, the status page talks about descriptor vs non-descriptor
on Intel platforms, and where me_cleaner is used (on platforms
that need Intel ME firmware), it regards the descriptored setups
to be blob-free if coreboot does not require binary blobs.
In this paradigm, microcode updates are not considered to be
binary blobs, because they aren't technically software, they're
more like config files that just turn certain features on or off
within the CPU.
However, for lbmk purposes, "noblobs" means that, after the ROM
is fully ready to flash on the chip, there will be no blobs in
it (except microcode). So for example, an X200 that does not
require ME firmware is considered blob-free under this paradigm,
even though Libreboot policy regards X230 as equally libre when
me_cleaner is used; in this setup, ROMs will not contain "blobfree"
in the filename, for X230 (as one example).
Signed-off-by: Leah Rowe <leah@libreboot.org>
2023-06-18 13:12:31 +00:00
|
|
|
# almost all boards will set at least one of these to "n"
|
|
|
|
blobs_required=""
|
|
|
|
microcode_required=""
|
|
|
|
|
2023-05-12 15:55:45 +00:00
|
|
|
CROSS_COMPILE=""
|
|
|
|
|
|
|
|
main()
|
|
|
|
{
|
2023-06-13 11:09:01 +00:00
|
|
|
while [ $# -gt 0 ]; do
|
2023-05-12 15:55:45 +00:00
|
|
|
case ${1} in
|
2023-06-20 01:06:51 +00:00
|
|
|
-d)
|
2023-06-13 11:09:01 +00:00
|
|
|
displaymodes="${displaymodes}${2}"
|
2023-05-12 15:55:45 +00:00
|
|
|
shift ;;
|
2023-06-20 01:06:51 +00:00
|
|
|
-p)
|
2023-06-13 11:09:01 +00:00
|
|
|
payloads="${payloads}${2}"
|
2023-05-12 15:55:45 +00:00
|
|
|
shift ;;
|
2023-06-20 01:06:51 +00:00
|
|
|
-k)
|
2023-06-13 11:09:01 +00:00
|
|
|
keyboard_layouts="${keyboard_layouts}${2}"
|
2023-05-12 15:55:45 +00:00
|
|
|
shift ;;
|
2023-06-20 01:06:51 +00:00
|
|
|
*)
|
2023-05-12 15:55:45 +00:00
|
|
|
board=${1} ;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2023-06-25 02:04:25 +00:00
|
|
|
printf "\n\nboard %s , kb %s , displaymode %s , payloads %s\n" \
|
2023-05-12 15:55:45 +00:00
|
|
|
${board} ${keyboard_layouts} ${displaymodes} \
|
2023-06-25 02:04:25 +00:00
|
|
|
${payloads} 1>&2
|
2023-05-12 15:55:45 +00:00
|
|
|
|
|
|
|
if [ "${board}" = "" ]; then
|
|
|
|
printf "build/roms: undefined board. Exiting\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2023-05-12 20:53:06 +00:00
|
|
|
|
|
|
|
load_config
|
|
|
|
build_dependencies
|
|
|
|
build_rom_images
|
|
|
|
}
|
|
|
|
|
|
|
|
load_config()
|
|
|
|
{
|
|
|
|
boardcfgdir="${cbcfgdir}/${board}"
|
|
|
|
|
|
|
|
if [ ! -d "${boardcfgdir}" ]; then
|
2023-05-12 15:55:45 +00:00
|
|
|
printf "build/roms: Target not defined: %s\n" ${board}
|
|
|
|
exit 1
|
|
|
|
fi
|
2023-05-12 20:53:06 +00:00
|
|
|
if [ ! -f "${boardcfgdir}/board.cfg" ]; then
|
2023-05-12 15:55:45 +00:00
|
|
|
printf "build/roms %s: Missing board.cfg\n" ${board}
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2023-06-13 11:09:01 +00:00
|
|
|
. "${boardcfgdir}/board.cfg"
|
2023-05-12 20:53:06 +00:00
|
|
|
|
|
|
|
if [ "${board}" != "${cbtree}" ]; then
|
|
|
|
cbdir="coreboot/${cbtree}"
|
|
|
|
else
|
|
|
|
cbdir="coreboot/${board}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
romdir="bin/${board}"
|
2023-06-24 22:23:16 +00:00
|
|
|
cbfstool="cbutils/${cbtree}/cbfstool"
|
2023-05-12 20:53:06 +00:00
|
|
|
seavgabiosrom="payload/seabios/seavgabios.bin"
|
|
|
|
corebootrom="${cbdir}/build/coreboot.rom"
|
2023-05-12 15:55:45 +00:00
|
|
|
|
|
|
|
if [ "${grub_scan_disk}" = "undefined" ]; then
|
|
|
|
printf "build/roms '%s': grub_scan_disk is undefined. " \
|
|
|
|
${board}
|
|
|
|
printf "Defaulting to 'both'.\n"
|
|
|
|
grub_scan_disk="both"
|
|
|
|
fi
|
|
|
|
if [ "${grub_scan_disk}" != "both" ] && \
|
|
|
|
[ "${grub_scan_disk}" != "ata" ] && \
|
|
|
|
[ "${grub_scan_disk}" != "ahci" ]; then
|
|
|
|
printf "build/roms '%s': invalid grub_scan_disk config. " \
|
2023-05-10 01:48:34 +00:00
|
|
|
${board}
|
2023-05-12 15:55:45 +00:00
|
|
|
printf "Defaulting to 'both'.\n"
|
|
|
|
grub_scan_disk="both"
|
|
|
|
# erroring out would be silly. just use the default
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${cbtree}" = "undefined" ]; then
|
|
|
|
printf "build/roms '%s': undefined coreboot tree. " \
|
|
|
|
${board}
|
|
|
|
printf "Skipping build.\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ "${arch}" = "undefined" ]; then
|
|
|
|
printf "build/roms '%s': undefined CPU type. " \
|
|
|
|
${board}
|
|
|
|
printf "Skipping build.\n"
|
2023-05-10 01:48:34 +00:00
|
|
|
exit 1
|
2021-05-18 12:56:12 +00:00
|
|
|
fi
|
|
|
|
|
2023-05-12 15:55:45 +00:00
|
|
|
if [ "${payload_memtest}" != "n" ] && \
|
|
|
|
[ "${payload_memtest}" != "y" ]; then
|
|
|
|
payload_memtest="n"
|
|
|
|
fi
|
2023-05-12 20:53:06 +00:00
|
|
|
if [ "${payload_grub_withseabios}" = "y" ]; then
|
2023-05-12 15:55:45 +00:00
|
|
|
payload_grub="y"
|
|
|
|
fi
|
2023-05-12 20:53:06 +00:00
|
|
|
if [ "${payload_grub_withseabios}" = "y" ]; then
|
2023-05-12 15:55:45 +00:00
|
|
|
payload_seabios="y"
|
2023-05-12 20:53:06 +00:00
|
|
|
payload_seabios_withgrub="y"
|
2022-12-07 18:41:33 +00:00
|
|
|
fi
|
2023-05-12 20:53:06 +00:00
|
|
|
if [ "${payload_seabios_withgrub}" = "y" ]; then
|
2023-05-12 15:55:45 +00:00
|
|
|
payload_seabios="y"
|
|
|
|
fi
|
|
|
|
if [ "${payload_uboot}" != "n" ] && \
|
|
|
|
[ "${payload_uboot}" != "y" ]; then
|
|
|
|
payload_uboot="n"
|
|
|
|
fi
|
|
|
|
if [ "${payload_uboot}" = "y" ] && \
|
|
|
|
[ "${uboot_config}" = "undefined" ]; then
|
|
|
|
uboot_config="default"
|
|
|
|
fi
|
build/boot/roms: Support removing microcode
From now on, the following rules are available for all
mainboards, in resources/coreboot/boardname/board.cfg:
* blobs_required="n" or "y"
* microcode_required="n" or "y"
The blobs setting, if set to "n", simply renames filename.rom to
filename_noblobs.rom.
The microcode setting, if set to "n", copies the ROM (with or
without _noblobs) to filename_nomicrocode.rom (if blobs="n",
it would be filename_noblobs_nomicrocode.rom).
Where "nomicrocode" is set, ROMs with microcode will still be
provided by lbmk and in relesase, but ROMs will also be provided
alongside it that lacks any microcode updates.
If the *original* ROM already lacks microcode updates, then the
original ROM will be *renamed* to include "nomicrocode" in the name.
This is done on images for ARM platforms, for instance, where
microcode is never used whatsoever.
Example filenames now generated:
seabios_e6400_4mb_libgfxinit_corebootfb_noblobs_nomicrocode.rom
seabios_e6400_4mb_libgfxinit_corebootfb_noblobs.rom
seabios_withgrub_hp8300usdt_16mb_libgfxinit_corebootfb_colemak_nomicrocode.rom
seabios_withgrub_hp8300usdt_16mb_libgfxinit_corebootfb_colemak.rom
uboot_payload_gru_kevin_libgfxinit_corebootfb_noblobs_nomicrocode.rom
A vocal minority of people were not happy with some of the changes
made in Libreboot last year, including on existing supported
hardware from before those changes were made. I did this before the
last release, out of respect:
https://libreboot.org/news/gm45microcode.html
(re-add mitigations for no-microcode setup on GM45)
This new change is done as an further, extended courtesy. Tested
and works fine. (testing using cbfstool-print)
Actual Libreboot policy about binary blobs is nuanced. See:
https://libreboot.org/news/policy.html (reduction policy) and:
https://libreboot.org/freedom-status.html (implementation)
Well, the status page talks about descriptor vs non-descriptor
on Intel platforms, and where me_cleaner is used (on platforms
that need Intel ME firmware), it regards the descriptored setups
to be blob-free if coreboot does not require binary blobs.
In this paradigm, microcode updates are not considered to be
binary blobs, because they aren't technically software, they're
more like config files that just turn certain features on or off
within the CPU.
However, for lbmk purposes, "noblobs" means that, after the ROM
is fully ready to flash on the chip, there will be no blobs in
it (except microcode). So for example, an X200 that does not
require ME firmware is considered blob-free under this paradigm,
even though Libreboot policy regards X230 as equally libre when
me_cleaner is used; in this setup, ROMs will not contain "blobfree"
in the filename, for X230 (as one example).
Signed-off-by: Leah Rowe <leah@libreboot.org>
2023-06-18 13:12:31 +00:00
|
|
|
if [ "${microcode_required}" != "n" ] \
|
|
|
|
&& [ "${microcode_required}" != "y" ]; then
|
|
|
|
microcode_required="y"
|
|
|
|
fi
|
|
|
|
if [ "${blobs_required}" != "n" ] \
|
|
|
|
&& [ "${blobs_required}" != "y" ]; then
|
|
|
|
blobs_required="y"
|
|
|
|
fi
|
2023-05-12 20:53:06 +00:00
|
|
|
|
|
|
|
load_config_overrides
|
|
|
|
die_if_cbconfig_and_nopayload
|
|
|
|
}
|
|
|
|
|
|
|
|
load_config_overrides()
|
|
|
|
{
|
2023-05-12 15:55:45 +00:00
|
|
|
# Override all payload directives with cmdline args
|
2023-05-12 23:13:54 +00:00
|
|
|
if [ -z ${payloads} ]; then
|
|
|
|
return 0
|
|
|
|
fi
|
2023-05-12 15:55:45 +00:00
|
|
|
|
2023-05-12 23:13:54 +00:00
|
|
|
echo "setting payloads $payloads"
|
|
|
|
payload_grub="n"
|
|
|
|
payload_grub_withseabios="n" # seabios chainloaded from grub
|
|
|
|
payload_seabios="n"
|
|
|
|
payload_seabios_withgrub="n" # grub from SeaBIOS menu
|
|
|
|
payload_uboot="n"
|
|
|
|
payload_memtest="n"
|
|
|
|
|
|
|
|
for payload in ${payloads} ; do
|
|
|
|
eval "payload_${payload}=y"
|
|
|
|
done
|
2023-05-12 20:53:06 +00:00
|
|
|
}
|
2022-12-07 18:41:33 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
die_if_cbconfig_and_nopayload()
|
|
|
|
{
|
|
|
|
# if a coreboot config exists, and payloads are not
|
|
|
|
# defined in the lbmk config, exit with error
|
|
|
|
# if no configs exist, this won't fail. this way, cbtrees
|
|
|
|
# like "default" can exist which just contain patches
|
2023-05-12 23:13:54 +00:00
|
|
|
|
|
|
|
if [ "${payload_grub}" = "y" ] || [ "${payload_seabios}" = "y" ] \
|
|
|
|
|| [ "${payload_uboot}" = "y" ]; then
|
|
|
|
return 0
|
2023-05-12 15:55:45 +00:00
|
|
|
fi
|
2023-05-12 23:13:54 +00:00
|
|
|
|
|
|
|
for configfile in "${boardcfgdir}/config/"*; do
|
|
|
|
if [ ! -e "${configfile}" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
printf "build/roms %s: Payload undefined. Exiting.\n" \
|
|
|
|
${board}
|
|
|
|
exit 1
|
|
|
|
done
|
2023-05-12 20:53:06 +00:00
|
|
|
}
|
2023-05-12 15:55:45 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
build_dependencies()
|
|
|
|
{
|
2023-05-12 15:55:45 +00:00
|
|
|
if [ ! -d "${cbdir}" ]; then
|
|
|
|
./download coreboot ${cbtree}
|
|
|
|
fi
|
2023-06-24 22:23:16 +00:00
|
|
|
./build module cbutils ${cbtree} || exit 1
|
2023-05-12 15:55:45 +00:00
|
|
|
cat version > "${cbdir}/.coreboot-version"
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
build_dependency_crossgcc
|
|
|
|
|
|
|
|
build_dependency_seabios
|
|
|
|
build_dependency_grub
|
|
|
|
build_dependency_uboot
|
|
|
|
}
|
|
|
|
|
|
|
|
build_dependency_crossgcc()
|
|
|
|
{
|
2023-06-24 22:28:41 +00:00
|
|
|
make distclean -C "${cbdir}"
|
2023-05-12 15:55:45 +00:00
|
|
|
if [ "${arch}" = "x86_32" ] || [ "${arch}" = "x86_64" ]; then
|
|
|
|
if [ ! -d "${cbdir}/util/crossgcc/xgcc/i386-elf/" ]; then
|
|
|
|
# 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)
|
|
|
|
fi
|
|
|
|
case "$(uname -m)" in
|
|
|
|
x86*|i*86|amd64) : ;;
|
|
|
|
*) export CROSS_COMPILE=i386-elf- ;;
|
|
|
|
esac
|
|
|
|
elif [ "${arch}" = "ARMv7" ]; then
|
|
|
|
if [ ! -d "${cbdir}/util/crossgcc/xgcc/arm-eabi/" ]; then
|
|
|
|
make -C "${cbdir}" crossgcc-arm CPUS=$(nproc)
|
|
|
|
fi
|
|
|
|
case "$(uname -m)" in
|
|
|
|
arm|arm32|armv6*|armv7*) : ;;
|
|
|
|
*) export CROSS_COMPILE=arm-eabi- ;;
|
|
|
|
esac
|
|
|
|
elif [ "${arch}" = "AArch64" ]; then
|
|
|
|
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
|
|
|
|
case "$(uname -m)" in
|
|
|
|
arm64|aarch64) : ;;
|
|
|
|
*) export CROSS_COMPILE=aarch64-elf- ;;
|
|
|
|
esac
|
|
|
|
fi
|
2023-05-10 01:48:34 +00:00
|
|
|
|
2023-05-12 15:55:45 +00:00
|
|
|
export PATH="$(pwd)/${cbdir}/util/crossgcc/xgcc/bin:$PATH"
|
2023-05-12 20:53:06 +00:00
|
|
|
}
|
2023-05-10 01:48:34 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
build_dependency_seabios()
|
|
|
|
{
|
2023-05-12 15:55:45 +00:00
|
|
|
if [ ! -f "${seavgabiosrom}" ] \
|
|
|
|
|| [ ! -f payload/seabios/seabios_libgfxinit.elf ] \
|
|
|
|
|| [ ! -f payload/seabios/seabios_vgarom.elf ] \
|
|
|
|
|| [ ! -f payload/seabios/seabios_normal.elf ]; then
|
|
|
|
if [ "${payload_seabios}" = "y" ]; then
|
|
|
|
./build payload seabios
|
|
|
|
elif [ "${payload_grub}" = "y" ] \
|
2023-05-12 20:53:06 +00:00
|
|
|
&& [ "${payload_grub_withseabios}" = "y" ]
|
2023-05-12 15:55:45 +00:00
|
|
|
then
|
|
|
|
./build payload seabios
|
2021-05-18 12:56:12 +00:00
|
|
|
fi
|
|
|
|
fi
|
2023-05-12 23:13:54 +00:00
|
|
|
if [ "${payload_memtest}" = "y" ] && [ ! -f "memtest86plus/memtest" ]
|
|
|
|
then
|
|
|
|
./build module memtest86plus
|
2023-05-12 15:55:45 +00:00
|
|
|
fi
|
2023-05-12 20:53:06 +00:00
|
|
|
}
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
build_dependency_grub()
|
|
|
|
{
|
2023-05-12 23:13:54 +00:00
|
|
|
if [ "${payload_grub}" != "y" ] \
|
|
|
|
&& [ "${payload_seabios_withgrub}" != "y" ]; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f "payload/grub/grub_usqwerty.cfg" ]; then
|
|
|
|
sha1cmd="sha1sum resources/grub/config/grub.cfg"
|
|
|
|
grubrefchecksum="$(${sha1cmd} | awk '{print $1}')"
|
|
|
|
|
|
|
|
sha1cmd="sha1sum payload/grub/grub_usqwerty.cfg"
|
|
|
|
grubsha1="$(${sha1cmd} | awk '{print $1}')"
|
|
|
|
|
|
|
|
if [ "${grubrefchecksum}" != "${grubsha1}" ]; then
|
|
|
|
rm -Rf payload/grub/
|
|
|
|
printf "GRUB change detected. Rebuilding:\n"
|
2021-05-18 12:56:12 +00:00
|
|
|
fi
|
2023-05-12 23:13:54 +00:00
|
|
|
else
|
|
|
|
printf "GRUB payloads needed. Building:\n"
|
|
|
|
rm -Rf payload/grub/ # just in case
|
2022-08-26 14:14:57 +00:00
|
|
|
fi
|
2023-05-12 23:13:54 +00:00
|
|
|
for keymapfile in ${kmapdir}/*; 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}" ] || \
|
|
|
|
[ ! -f "${grubtestcfg}" ]; then
|
|
|
|
./build payload grub
|
|
|
|
fi
|
|
|
|
done
|
2023-05-12 20:53:06 +00:00
|
|
|
}
|
2022-08-26 14:14:57 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
build_dependency_uboot()
|
|
|
|
{
|
2023-05-12 23:13:54 +00:00
|
|
|
if [ "${payload_uboot}" != "y" ]; then
|
|
|
|
return 0
|
|
|
|
fi
|
2023-05-12 15:55:45 +00:00
|
|
|
|
2023-05-12 23:13:54 +00:00
|
|
|
ubdir=""
|
|
|
|
if [ "${uboot_config}" = "default" ]; then
|
|
|
|
ubdir="payload/u-boot/${board}"
|
|
|
|
else
|
|
|
|
ubdir="payload/u-boot/${board}/${uboot_config}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f "${ubdir}/u-boot.elf" ]; then
|
|
|
|
ubootelf="${ubdir}/u-boot.elf"
|
|
|
|
elif [ -f "${ubdir}/u-boot" ]; then
|
|
|
|
ubootelf="${ubdir}/u-boot"
|
|
|
|
else
|
|
|
|
printf "U-Boot needed. Building:\n"
|
|
|
|
rm -Rf "payload/u-boot/${board}" # just in case
|
|
|
|
./build payload u-boot "${board}"
|
2023-05-12 15:55:45 +00:00
|
|
|
fi
|
2023-05-12 20:53:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build_rom_images()
|
|
|
|
{
|
|
|
|
[ -d "${romdir}/" ] || mkdir -p "${romdir}/"
|
|
|
|
rm -f "${romdir}"/*
|
2023-05-12 15:55:45 +00:00
|
|
|
|
2023-05-13 01:21:57 +00:00
|
|
|
for initmode in "normal" "vgarom" "libgfxinit"; do
|
|
|
|
hmode="vesafb"
|
|
|
|
if [ "${initmode}" != "vgarom" ]; then
|
|
|
|
hmode="corebootfb"
|
|
|
|
fi
|
|
|
|
modes="${hmode} txtmode"
|
|
|
|
if [ ! -z ${displaymodes} ]; then
|
|
|
|
modes="${displaymodes}"
|
|
|
|
fi
|
|
|
|
for displaymode in ${modes}; do
|
|
|
|
if [ "${initmode}" = "normal" ] \
|
|
|
|
&& [ "$displaymode" != "txtmode" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
cbcfg="${boardcfgdir}/config/${initmode}"
|
|
|
|
cbcfg="${cbcfg}_${displaymode}"
|
|
|
|
if [ "${initmode}" = "normal" ]; then
|
|
|
|
cbcfg="${cbcfg%_*}"
|
|
|
|
fi
|
|
|
|
mkRoms "${cbcfg}" "${displaymode}" "${initmode}"
|
2023-05-12 15:55:45 +00:00
|
|
|
done
|
2023-05-13 01:21:57 +00:00
|
|
|
done
|
2023-05-12 15:55:45 +00:00
|
|
|
|
2023-05-13 01:52:42 +00:00
|
|
|
make distclean -BC "${cbdir}"
|
2023-05-12 15:55:45 +00:00
|
|
|
}
|
2022-08-26 14:14:57 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
# Main ROM building function. This calls all other functions
|
|
|
|
mkRoms()
|
2023-05-10 04:09:10 +00:00
|
|
|
{
|
2023-05-12 20:53:06 +00:00
|
|
|
_cbcfg="${1}"
|
|
|
|
displaymode="${2}"
|
|
|
|
initmode="${3}"
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
if [ ! -f "${_cbcfg}" ]; then
|
|
|
|
printf "'%s' does not exist. Skipping build for %s %s %s\n" \
|
|
|
|
${_cbcfg} ${board} \
|
|
|
|
${displaymode} ${initmode}
|
|
|
|
return 0
|
|
|
|
fi
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
# make coreboot ROM without a payload in it
|
2023-05-13 02:06:55 +00:00
|
|
|
mkCoreboot "${_cbcfg}"
|
2023-05-12 20:53:06 +00:00
|
|
|
|
|
|
|
# now add payloads, per user config:
|
|
|
|
|
|
|
|
if [ "${displaymode}" = "txtmode" ] \
|
|
|
|
&& [ "${payload_memtest}" = "y" ]; then
|
|
|
|
"${cbfstool}" "${corebootrom}" add-payload \
|
|
|
|
-f memtest86plus/memtest -n img/memtest \
|
|
|
|
-c lzma || exit 1
|
2021-10-30 20:22:27 +00:00
|
|
|
fi
|
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
if [ "${payload_seabios}" = "y" ]; then
|
|
|
|
if [ "${payload_seabios_withgrub}" = "n" ]; then
|
|
|
|
x=${corebootrom}
|
|
|
|
y=${initmode}
|
|
|
|
t=$(mkSeabiosRom "$x" "fallback/payload" "$y")
|
|
|
|
|
|
|
|
_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-12 20:53:06 +00:00
|
|
|
|
|
|
|
# rom image ready to be flashed:
|
|
|
|
moverom "${t}" "${_newrom}" "${romtype}"
|
|
|
|
rm -f "${t}"
|
|
|
|
else
|
|
|
|
tmprom=$(mktemp -t coreboot_rom.XXXXXXXXXX)
|
|
|
|
cp "${corebootrom}" "${tmprom}"
|
|
|
|
mkRomsWithGrub "${tmprom}" "${initmode}" \
|
|
|
|
"${displaymode}" "seabios_withgrub"
|
|
|
|
rm -f "${tmprom}"
|
2023-05-10 01:48:34 +00:00
|
|
|
fi
|
2023-05-12 20:53:06 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${payload_grub}" = "y" ]; then
|
|
|
|
mkRomsWithGrub "${corebootrom}" "${initmode}" \
|
|
|
|
"${displaymode}" "grub"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${payload_uboot}" = "y" ]; then
|
|
|
|
x=${corebootrom}
|
|
|
|
y=${uboot_config}
|
|
|
|
z=${cbfstool}
|
|
|
|
tmpubootrom="$(mkUbootRom "$x" "fallback/payload" "$y" "$z")"
|
|
|
|
if [ "${initmode}" = "normal" ]; then
|
|
|
|
_newrom="${romdir}/uboot_payload_${board}_"
|
|
|
|
_newrom="${_newrom}${initmode}.rom"
|
|
|
|
else
|
|
|
|
_newrom="${romdir}/uboot_payload_${board}_"
|
|
|
|
_newrom="${_newrom}${initmode}_${displaymode}.rom"
|
2023-05-10 01:48:34 +00:00
|
|
|
fi
|
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
# rom image ready to be flashed:
|
|
|
|
moverom "${tmpubootrom}" "${_newrom}" "${romtype}"
|
|
|
|
rm -f "${tmpubootrom}"
|
2023-05-10 01:48:34 +00:00
|
|
|
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-13 02:06:55 +00:00
|
|
|
_cbcfg="${1}" # eg. resources/coreboot/e6400nvidia_4mb/config/normal
|
2023-05-12 20:53:06 +00:00
|
|
|
|
2023-05-12 15:55:45 +00:00
|
|
|
if [ ! -f "${_cbcfg}" ]; then
|
2023-05-10 01:48:34 +00:00
|
|
|
printf "\nmkCoreboot: coreboot config '%s' does not exist. " \
|
2023-05-12 15:55:45 +00:00
|
|
|
${_cbcfg}
|
2023-05-10 01:48:34 +00:00
|
|
|
printf "Skipping build.\n"
|
2021-05-18 12:56:12 +00:00
|
|
|
return 0
|
|
|
|
fi
|
2023-05-12 20:53:06 +00:00
|
|
|
|
2023-05-10 01:48:34 +00:00
|
|
|
printf "%s-%s\n" "$(cat projectname)" "$(cat version)" \
|
|
|
|
> "${cbdir}/.coreboot-version"
|
2022-11-14 00:51:12 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
if [ -f "${cbfstool}" ]; then
|
|
|
|
mv "${cbfstool}" "${cbdir}/cbfstool"
|
|
|
|
fi
|
2023-06-24 22:28:41 +00:00
|
|
|
make distclean -BC "${cbdir}"
|
2022-11-14 00:51:12 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
if [ -f "${cbdir}/cbfstool" ]; then
|
|
|
|
mv "${cbdir}/cbfstool" "${cbfstool}"
|
|
|
|
fi
|
|
|
|
|
2023-05-12 15:55:45 +00:00
|
|
|
cp "${_cbcfg}" "${cbdir}"/.config
|
2023-05-12 20:53:06 +00:00
|
|
|
|
2023-05-13 01:52:42 +00:00
|
|
|
make -j$(nproc) -BC "${cbdir}"
|
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
|
|
|
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 19:22:17 +00:00
|
|
|
target_initmode="${3}" # e.g. libgfxinit
|
2021-05-18 12:56:12 +00:00
|
|
|
|
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
|
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}"
|
|
|
|
}
|
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
# Make separate ROM images with GRUB payload, for each supported keymap
|
|
|
|
mkRomsWithGrub()
|
2023-05-10 04:09:10 +00:00
|
|
|
{
|
2023-05-12 20:53:06 +00:00
|
|
|
tmprompath="${1}"
|
|
|
|
initmode="${2}"
|
|
|
|
displaymode="${3}"
|
|
|
|
firstpayloadname="${4}" # allow values: grub, seabios, seabios_withgrub
|
2022-08-26 14:14:57 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
x=${tmprompath}
|
|
|
|
y=${initmode}
|
|
|
|
if [ "${payload_grub_withseabios}" = "y" ] \
|
|
|
|
&& [ "${firstpayloadname}" = "grub" ]; then
|
|
|
|
mv "$(mkSeabiosRom "${x}" "seabios.elf" "${y}")" \
|
|
|
|
"${tmprompath}"
|
|
|
|
elif [ "${payload_seabios_withgrub}" ] \
|
|
|
|
&& [ "${firstpayloadname}" != "grub" ]; then
|
|
|
|
mv "$(mkSeabiosRom "${x}" "fallback/payload" "${y}")" \
|
|
|
|
"${tmprompath}"
|
2022-12-09 11:50:03 +00:00
|
|
|
fi
|
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
keymaps=""
|
|
|
|
if [ -z ${keyboard_layouts} ]; then
|
|
|
|
for kmapfile in "${kmapdir}"/*; do
|
2023-06-13 11:09:01 +00:00
|
|
|
keymaps="${keymaps} ${kmapfile}"
|
2023-05-12 20:53:06 +00:00
|
|
|
done
|
|
|
|
else
|
|
|
|
for keymapname in ${keyboard_layouts}; do
|
2023-06-13 11:09:01 +00:00
|
|
|
keymaps="${keymaps} ${kmapdir}/${keymapname}.gkb"
|
2023-05-12 20:53:06 +00:00
|
|
|
done
|
2022-08-26 14:14:57 +00:00
|
|
|
fi
|
2023-05-12 20:53:06 +00:00
|
|
|
for keymapfile in ${keymaps}; do
|
|
|
|
if [ ! -f "${keymapfile}" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
2022-08-26 14:14:57 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
keymap="${keymapfile##*/}"
|
|
|
|
keymap="${keymap%.gkb}"
|
2022-08-26 14:14:57 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
grub_path_in_cbfs="fallback/payload"
|
|
|
|
if [ "${firstpayloadname}" != "grub" ]; then
|
|
|
|
grub_path_in_cbfs="img/grub2"
|
|
|
|
fi
|
2022-08-26 14:14:57 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
# evil bofh rfc 2646 compliance hack
|
|
|
|
x=${keymap}
|
|
|
|
y=${tmprompath}
|
|
|
|
z=${grub_path_in_cbfs}
|
|
|
|
tmpgrubrom="$(mkGrubRom "${x}" "${y}" "${z}")"
|
|
|
|
|
|
|
|
_newrom="${romdir}/${firstpayloadname}_${board}_${initmode}_"
|
|
|
|
if [ "${initmode}" = "normal" ]; then
|
|
|
|
_newrom="${_newrom}${keymap}.rom"
|
|
|
|
else
|
|
|
|
_newrom="${_newrom}${displaymode}_${keymap}.rom"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# rom image ready to be flashed:
|
|
|
|
moverom "${tmpgrubrom}" "${_newrom}" "${romtype}"
|
|
|
|
rm -f "${tmpgrubrom}"
|
|
|
|
done
|
2022-08-26 14:14:57 +00:00
|
|
|
}
|
|
|
|
|
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
|
2023-05-12 20:53:06 +00:00
|
|
|
|
2022-12-11 06:25:09 +00:00
|
|
|
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}"
|
|
|
|
}
|
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
# make a rom in /tmp/ and then print the path of that ROM
|
|
|
|
mkUbootRom()
|
2023-05-10 04:09:10 +00:00
|
|
|
{
|
2023-05-12 20:53:06 +00:00
|
|
|
target_cbrom="${1}" # rom to insert u-boot in. it 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}"
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
if [ "${target_uboot_config}" = "default" ]; then
|
|
|
|
target_ubdir="payload/u-boot/${board}"
|
2022-11-14 00:51:12 +00:00
|
|
|
else
|
2023-05-12 20:53:06 +00:00
|
|
|
target_ubdir="payload/u-boot/${board}/${target_uboot_config}"
|
2022-11-14 00:51:12 +00:00
|
|
|
fi
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
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"
|
|
|
|
fi
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
tmprom=$(mktemp -t coreboot_rom.XXXXXXXXXX)
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
cp "${target_cbrom}" "${tmprom}"
|
|
|
|
"${cbfstool}" "${tmprom}" add-payload -f "${target_ubootelf}" \
|
|
|
|
-n ${target_uboot_cbfs_path} -c lzma || exit 1
|
2023-05-10 01:48:34 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
printf "%s\n" "${tmprom}"
|
2021-05-18 12:56:12 +00:00
|
|
|
}
|
|
|
|
|
2023-05-12 20:53:06 +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()
|
2023-05-10 04:09:10 +00:00
|
|
|
{
|
2023-05-12 20:53:06 +00:00
|
|
|
rompath="$1"
|
|
|
|
_newrom="$2"
|
|
|
|
cuttype="$3"
|
2021-05-18 12:56:12 +00:00
|
|
|
|
build/boot/roms: Support removing microcode
From now on, the following rules are available for all
mainboards, in resources/coreboot/boardname/board.cfg:
* blobs_required="n" or "y"
* microcode_required="n" or "y"
The blobs setting, if set to "n", simply renames filename.rom to
filename_noblobs.rom.
The microcode setting, if set to "n", copies the ROM (with or
without _noblobs) to filename_nomicrocode.rom (if blobs="n",
it would be filename_noblobs_nomicrocode.rom).
Where "nomicrocode" is set, ROMs with microcode will still be
provided by lbmk and in relesase, but ROMs will also be provided
alongside it that lacks any microcode updates.
If the *original* ROM already lacks microcode updates, then the
original ROM will be *renamed* to include "nomicrocode" in the name.
This is done on images for ARM platforms, for instance, where
microcode is never used whatsoever.
Example filenames now generated:
seabios_e6400_4mb_libgfxinit_corebootfb_noblobs_nomicrocode.rom
seabios_e6400_4mb_libgfxinit_corebootfb_noblobs.rom
seabios_withgrub_hp8300usdt_16mb_libgfxinit_corebootfb_colemak_nomicrocode.rom
seabios_withgrub_hp8300usdt_16mb_libgfxinit_corebootfb_colemak.rom
uboot_payload_gru_kevin_libgfxinit_corebootfb_noblobs_nomicrocode.rom
A vocal minority of people were not happy with some of the changes
made in Libreboot last year, including on existing supported
hardware from before those changes were made. I did this before the
last release, out of respect:
https://libreboot.org/news/gm45microcode.html
(re-add mitigations for no-microcode setup on GM45)
This new change is done as an further, extended courtesy. Tested
and works fine. (testing using cbfstool-print)
Actual Libreboot policy about binary blobs is nuanced. See:
https://libreboot.org/news/policy.html (reduction policy) and:
https://libreboot.org/freedom-status.html (implementation)
Well, the status page talks about descriptor vs non-descriptor
on Intel platforms, and where me_cleaner is used (on platforms
that need Intel ME firmware), it regards the descriptored setups
to be blob-free if coreboot does not require binary blobs.
In this paradigm, microcode updates are not considered to be
binary blobs, because they aren't technically software, they're
more like config files that just turn certain features on or off
within the CPU.
However, for lbmk purposes, "noblobs" means that, after the ROM
is fully ready to flash on the chip, there will be no blobs in
it (except microcode). So for example, an X200 that does not
require ME firmware is considered blob-free under this paradigm,
even though Libreboot policy regards X230 as equally libre when
me_cleaner is used; in this setup, ROMs will not contain "blobfree"
in the filename, for X230 (as one example).
Signed-off-by: Leah Rowe <leah@libreboot.org>
2023-06-18 13:12:31 +00:00
|
|
|
if [ "${blobs_required}" = "n" ]; then
|
|
|
|
_newrom="${_newrom%.rom}_noblobs.rom"
|
|
|
|
fi
|
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
printf "\nCreating new ROM image: %s\n" "${_newrom}"
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2023-05-13 00:07:53 +00:00
|
|
|
cp ${rompath} ${_newrom}
|
2021-11-01 02:51:10 +00:00
|
|
|
|
2023-05-12 20:53:06 +00:00
|
|
|
if [ "${cuttype}" = "i945 laptop" ]; then
|
|
|
|
dd if=${_newrom} of=top64k.bin bs=1 \
|
2023-06-13 11:09:01 +00:00
|
|
|
skip=$(($(stat -c %s ${_newrom}) - 0x10000)) \
|
2023-05-12 20:53:06 +00:00
|
|
|
count=64k
|
2023-06-13 11:09:01 +00:00
|
|
|
dd if=top64k.bin of=${_newrom} bs=1 \
|
|
|
|
seek=$(($(stat -c %s ${_newrom}) - 0x20000)) \
|
|
|
|
count=64k conv=notrunc
|
2023-05-12 20:53:06 +00:00
|
|
|
rm -f top64k.bin
|
2022-08-26 14:14:57 +00:00
|
|
|
fi
|
2023-05-13 00:27:00 +00:00
|
|
|
|
|
|
|
for romsize in 4 8 16; do
|
|
|
|
for x in "IFD" "IFD NOGBE"; do
|
|
|
|
if [ "${romsize}MiB ICH9 ${x} NOR flash" \
|
|
|
|
!= "${cuttype}" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
c=4
|
|
|
|
ifdgbe="descriptors/ich9m/ich9fdnogbe_${romsize}m.bin"
|
|
|
|
if [ "${x}" = "IFD" ]; then
|
|
|
|
c=12
|
|
|
|
ifdgbe="descriptors/ich9m/ich9fdgbe_${romsize}m.bin"
|
|
|
|
fi
|
2023-05-13 00:34:29 +00:00
|
|
|
if [ ! -f "${ifdgbe}" ]; then
|
|
|
|
./build descriptors ich9m
|
|
|
|
fi
|
2023-05-13 00:38:59 +00:00
|
|
|
dd if=${ifdgbe} of=${_newrom} bs=${c}k count=1 \
|
2023-05-13 00:27:00 +00:00
|
|
|
conv=notrunc
|
|
|
|
done
|
|
|
|
done
|
build/boot/roms: Support removing microcode
From now on, the following rules are available for all
mainboards, in resources/coreboot/boardname/board.cfg:
* blobs_required="n" or "y"
* microcode_required="n" or "y"
The blobs setting, if set to "n", simply renames filename.rom to
filename_noblobs.rom.
The microcode setting, if set to "n", copies the ROM (with or
without _noblobs) to filename_nomicrocode.rom (if blobs="n",
it would be filename_noblobs_nomicrocode.rom).
Where "nomicrocode" is set, ROMs with microcode will still be
provided by lbmk and in relesase, but ROMs will also be provided
alongside it that lacks any microcode updates.
If the *original* ROM already lacks microcode updates, then the
original ROM will be *renamed* to include "nomicrocode" in the name.
This is done on images for ARM platforms, for instance, where
microcode is never used whatsoever.
Example filenames now generated:
seabios_e6400_4mb_libgfxinit_corebootfb_noblobs_nomicrocode.rom
seabios_e6400_4mb_libgfxinit_corebootfb_noblobs.rom
seabios_withgrub_hp8300usdt_16mb_libgfxinit_corebootfb_colemak_nomicrocode.rom
seabios_withgrub_hp8300usdt_16mb_libgfxinit_corebootfb_colemak.rom
uboot_payload_gru_kevin_libgfxinit_corebootfb_noblobs_nomicrocode.rom
A vocal minority of people were not happy with some of the changes
made in Libreboot last year, including on existing supported
hardware from before those changes were made. I did this before the
last release, out of respect:
https://libreboot.org/news/gm45microcode.html
(re-add mitigations for no-microcode setup on GM45)
This new change is done as an further, extended courtesy. Tested
and works fine. (testing using cbfstool-print)
Actual Libreboot policy about binary blobs is nuanced. See:
https://libreboot.org/news/policy.html (reduction policy) and:
https://libreboot.org/freedom-status.html (implementation)
Well, the status page talks about descriptor vs non-descriptor
on Intel platforms, and where me_cleaner is used (on platforms
that need Intel ME firmware), it regards the descriptored setups
to be blob-free if coreboot does not require binary blobs.
In this paradigm, microcode updates are not considered to be
binary blobs, because they aren't technically software, they're
more like config files that just turn certain features on or off
within the CPU.
However, for lbmk purposes, "noblobs" means that, after the ROM
is fully ready to flash on the chip, there will be no blobs in
it (except microcode). So for example, an X200 that does not
require ME firmware is considered blob-free under this paradigm,
even though Libreboot policy regards X230 as equally libre when
me_cleaner is used; in this setup, ROMs will not contain "blobfree"
in the filename, for X230 (as one example).
Signed-off-by: Leah Rowe <leah@libreboot.org>
2023-06-18 13:12:31 +00:00
|
|
|
|
|
|
|
if [ "${microcode_required}" = "n" ]; then
|
|
|
|
_newrom_b="${_newrom%.rom}_nomicrocode.rom"
|
|
|
|
cp "${_newrom}" "${_newrom_b}" || exit 1
|
|
|
|
microcode_present="y"
|
|
|
|
"${cbfstool}" "${_newrom_b}" remove -n \
|
|
|
|
cpu_microcode_blob.bin || microcode_present="n"
|
|
|
|
if [ "${microcode_present}" = "n" ]; then
|
|
|
|
rm -f "${_newrom_b}" || exit 1
|
|
|
|
printf "REMARK: '%s' already lacks microcode\n" \
|
|
|
|
${_newrom}
|
|
|
|
printf "Renaming default ROM file instead.\n"
|
|
|
|
mv "${_newrom}" "${_newrom_b}" || exit 1
|
|
|
|
fi
|
|
|
|
fi
|
2021-05-18 12:56:12 +00:00
|
|
|
}
|
|
|
|
|
2023-05-12 15:55:45 +00:00
|
|
|
main $@
|