From 3f7e0b56e44cee9bd7e0f745f44a6e5ef5e471d4 Mon Sep 17 00:00:00 2001 From: "Stefan Cristian B." Date: Wed, 13 May 2026 23:01:36 +0300 Subject: [PATCH] targets/support/iso-bootloader-setup.sh: enable customization for grub theme --- targets/support/iso-bootloader-setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/targets/support/iso-bootloader-setup.sh b/targets/support/iso-bootloader-setup.sh index 70e9afd6..74458215 100755 --- a/targets/support/iso-bootloader-setup.sh +++ b/targets/support/iso-bootloader-setup.sh @@ -111,13 +111,13 @@ case ${clst_hostarch} in mkdir -p $1/boot/grub echo 'set default=0' > ${iacfg} echo 'set gfxpayload=keep' >> ${iacfg} - echo 'set timeout=10' >> ${iacfg} + echo "set timeout=${clst_livecd_grub_timeout:-10}" >> ${iacfg} echo 'insmod all_video' >> ${iacfg} echo 'insmod png' >> ${iacfg} echo 'insmod gfxterm' >> ${iacfg} echo 'terminal_output gfxterm' >> ${iacfg} echo 'set gfxmode=auto' >> ${iacfg} - echo 'set theme=/boot/grub/themes/gentoo_frosted/theme.txt' >> ${iacfg} + echo "set theme=${clst_livecd_grub_theme:-/boot/grub/themes/gentoo_frosted/theme.txt}" >> ${iacfg} echo '' >> ${iacfg} for x in ${clst_boot_kernel} do