From 15081ed9efc54c69d5600dd0379ee16eb271df89 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Tue, 5 Sep 2023 00:50:08 +0100 Subject: grub: make backgrounds configurable in target.cfg now under coreboot mainboards, target.cfg can specify a background. if not specified, the 1280x800 one is assumed, and used by default. it can be overridden. the path should be relative to: config/grub/background/ Signed-off-by: Leah Rowe --- script/build/boot/roms_helper | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'script/build') diff --git a/script/build/boot/roms_helper b/script/build/boot/roms_helper index 76487877..4cfe4bf1 100755 --- a/script/build/boot/roms_helper +++ b/script/build/boot/roms_helper @@ -60,6 +60,7 @@ cbdir="" cbfstool="" corebootrom="" seavgabiosrom="elf/seabios/default/libgfxinit/vgabios.bin" +grub_background="background1280x800.png" initmode="" displaymode="" @@ -362,13 +363,7 @@ build_grub_roms() { # we only need insert background.png once, for each coreboot config: if [ "${displaymode}" = "vesafb" ] || \ [ "${displaymode}" = "corebootfb" ]; then - backgroundfile="background1280x800.png" - if [ "${board}" = "x60" ] \ - || [ "${board}" = "t60_intelgpu" ]; then - # TODO: don't hardcode this. do it in target.cfg - backgroundfile="background1024x768.png" - fi - backgroundfile="config/grub/background/${backgroundfile}" + backgroundfile="config/grub/background/${grub_background}" "${cbfstool}" "${tmprompath}" add -f ${backgroundfile} \ -n background.png -t raw || \ err "build_grub_roms: cannot add background.png to tmprom" -- cgit v1.2.1