rebuild.sh: Add theme for Trixie
The theme for Trixie is Ceratopsian https://wiki.debian.org/DebianArt/Themes/Ceratopsian
This commit is contained in:
parent
687c6d04e8
commit
4b13a602bb
|
@ -634,17 +634,22 @@ fi
|
|||
|
||||
# For oldstable and stable use the same boot splash screen as the Debian installer
|
||||
case "$DEBIAN_VERSION" in
|
||||
"bullseye")
|
||||
"bullseye"|"oldstable")
|
||||
mkdir -p config/bootloaders
|
||||
wget --quiet https://salsa.debian.org/installer-team/debian-installer/-/raw/master/build/boot/artwork/11-homeworld/homeworld.svg -O config/bootloaders/splash.svg
|
||||
mkdir -p config/bootloaders/grub-pc
|
||||
# Use the old resolution of 640x480 for grub
|
||||
ln -s ../../isolinux/splash.png config/bootloaders/grub-pc/splash.png
|
||||
;;
|
||||
"bookworm")
|
||||
"bookworm"|"stable")
|
||||
mkdir -p config/bootloaders
|
||||
wget --quiet https://salsa.debian.org/installer-team/debian-installer/-/raw/master/build/boot/artwork/12-emerald/emerald.svg -O config/bootloaders/splash.svg
|
||||
;;
|
||||
"trixie"|"testing")
|
||||
# Trixie artwork: https://wiki.debian.org/DebianArt/Themes/Ceratopsian
|
||||
mkdir -p config/bootloaders
|
||||
wget --quiet https://raw.githubusercontent.com/pccouper/trixie/refs/heads/main/grub/grub.svg -O config/bootloaders/splash.svg
|
||||
;;
|
||||
*)
|
||||
# Use the default 'under construction' image
|
||||
;;
|
||||
|
|
Loading…
Reference in New Issue