summaryrefslogtreecommitdiff
path: root/script/roms
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2024-06-15 22:53:34 +0100
committerLeah Rowe <leah@libreboot.org>2024-06-15 23:15:27 +0100
commit340eea0b1cd445feb7134eae4211f469fd6f5d2a (patch)
treeebab8cb6434222d273046eb2dd4f9b3b5f2c0c42 /script/roms
parented9c90e59d959bab544598d330c724e44afcc096 (diff)
grub: insert background in memdisk instead
the background is only a few kb. the whole rationale before was to limit the space used in memdisk, but this decision was made when the background was much bigger; it has since been optimised greatly, and the grub modules were heavily reduce, so it should be safe. grub's memdisk breaks when you add too much data to it. as part of simplifying the rest of lbmk, this change removes some more bloat from the rest of lbmk. handling this in the memdisk is much simpler than handling it with cbfstool. Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/roms')
-rwxr-xr-xscript/roms9
1 files changed, 0 insertions, 9 deletions
diff --git a/script/roms b/script/roms
index 0e4b4b72..e2caacef 100755
--- a/script/roms
+++ b/script/roms
@@ -11,7 +11,6 @@ set -u -e
. "include/lib.sh"
seavgabiosrom="elf/seabios/default/libgfxinit/vgabios.bin"
-grub_background="background1280x800.png"
cfgsdir="config/coreboot"
picosrc="src/pico-serprog"
picosdk="src/pico-sdk"
@@ -107,7 +106,6 @@ list_serprog_boards()
configure_target()
{
eval "$(setvars "n" $pv) $(setvars "" $v)"
- grub_background="background1280x800.png"
board="$1"
targetdir="$cfgsdir/$board"
@@ -261,13 +259,6 @@ build_grub_roms()
# we only need insert grub.elf once, for each coreboot config:
cbfs "$tmprom" "$grubelf" "$grub_cbfs"
- # we only need insert background.png once, for each coreboot config:
- if [ "$displaymode" = "vesafb" ] || \
- [ "$displaymode" = "corebootfb" ]; then
- cbfs "$tmprom" "$grubdata/background/$grub_background" \
- background.png raw
- fi
-
tmpcfg="$(mktemp -t coreboot_rom.XXXXXXXXXX)"
printf "set grub_scan_disk=\"%s\"\n" "$grub_scan_disk" > "$tmpcfg" || \
$err "set grub_scan_disk, $grub_scan_disk, $tmpcfg"