diff --git a/usr/src/boot/host/iso.sh b/usr/src/boot/host/iso.sh index 1754db8..841f758 100755 --- a/usr/src/boot/host/iso.sh +++ b/usr/src/boot/host/iso.sh @@ -14,6 +14,7 @@ set -e ISO=../../../sp1.iso CONFIG=../data/boot/limine.conf +WALLPAPER=../data/boot/wallpaper.jpg KERNEL=../../../sp1.sys mkdir -p iso_root/boot/ @@ -21,6 +22,9 @@ mkdir -p iso_root/boot/ # Copy the kernel to the ISO root cp $KERNEL iso_root/boot +# Copy the wallpaper to the ISO root +cp $WALLPAPER iso_root/boot + # Copy boot files cp $CONFIG stand/limine/limine-bios.sys \ stand/limine/limine-bios-cd.bin \ diff --git a/usr/src/data/boot/limine.conf b/usr/src/data/boot/limine.conf index 55a4829..bab324b 100644 --- a/usr/src/data/boot/limine.conf +++ b/usr/src/data/boot/limine.conf @@ -1,10 +1,13 @@ -timeout: 0 -interface_branding_color: 4 -interface_help_color: 2 +timeout: 16 +interface_branding_color: 7 +wallpaper: boot():/boot/wallpaper.jpg + +interface_branding: -- Yiff! -- +wallpaper_style: tiled editor_enabled: no -interface_help_hidden: no -randomize_hhdm_base: no +interface_help_hidden: yes +randomize_hhdm_base: yes /sp1 protocol: limine diff --git a/usr/src/data/boot/wallpaper.jpg b/usr/src/data/boot/wallpaper.jpg new file mode 100644 index 0000000..7ca726e Binary files /dev/null and b/usr/src/data/boot/wallpaper.jpg differ