summaryrefslogtreecommitdiff
path: root/resources/scripts/build/boot
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2021-10-31 00:54:53 +0100
committerLeah Rowe <leah@libreboot.org>2021-10-31 07:13:46 +0000
commit62fa042a17846f1619f257f878b928364d96b3a8 (patch)
tree770413cb2bcdc70b84aa7eaeb6336a64e41bbbef /resources/scripts/build/boot
parent49198fe3d11817462f48ce3d3d567b2d8cd95462 (diff)
re-add grub backgrounds and update grub. mitigate missing characters
mitigate missing characters in unifont for border/arrow characters. this saves space because now it is no longer necessary to add a custom font the background added has the libreboot logo on it, and it's 10kb in size unlike the old gnulove background that was hundreds of KB
Diffstat (limited to 'resources/scripts/build/boot')
-rwxr-xr-xresources/scripts/build/boot/roms_helper8
1 files changed, 8 insertions, 0 deletions
diff --git a/resources/scripts/build/boot/roms_helper b/resources/scripts/build/boot/roms_helper
index 77cc9f15..a4d5ff32 100755
--- a/resources/scripts/build/boot/roms_helper
+++ b/resources/scripts/build/boot/roms_helper
@@ -347,6 +347,14 @@ make_grubrom_from_keymap() {
"${cbfstool_path}" "${tmprom}" add -f "${grubcfg}" -n grub.cfg -t raw
"${cbfstool_path}" "${tmprom}" add -f "${grubtestcfg}" -n grubtest.cfg -t raw
+ 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}"
+ "${cbfstool_path}" "${tmprom}" add -f ${backgroundfile} -n background.png -t raw
+
printf "%s\n" "${tmprom}"
}