diff --git a/service/base/boot/limine.conf b/service/base/boot/limine.conf index 4ef42db..2a2355b 100644 --- a/service/base/boot/limine.conf +++ b/service/base/boot/limine.conf @@ -5,7 +5,12 @@ interface_branding: -- PtOS -- editor_enabled: no interface_help_hidden: yes randomize_hhdm_base: yes +timeout: 16 + +wallpaper: boot():/boot/wallpaper.jpg +wallpaper_style: stretched /PtOS protocol: limine kernel_path: boot():/boot/ptsv.sys + module_path: boot():/boot/pbi.hole diff --git a/service/base/boot/wallpaper.jpg b/service/base/boot/wallpaper.jpg new file mode 100644 index 0000000..d827719 Binary files /dev/null and b/service/base/boot/wallpaper.jpg differ diff --git a/service/boot/host/iso.sh b/service/boot/host/iso.sh index b828066..1949de6 100755 --- a/service/boot/host/iso.sh +++ b/service/boot/host/iso.sh @@ -8,6 +8,7 @@ set -e ISO=$PT_PROJECT_ROOT/artifacts/ptos.iso CONFIG=$PT_PROJECT_ROOT/service/base/boot/limine.conf +WALLPAPER=$PT_PROJECT_ROOT/service/base/boot/wallpaper.jpg KERNEL=$PT_PROJECT_ROOT/artifacts/ptsv.sys HOLE=$PT_PROJECT_ROOT/service/host/bin/hole @@ -18,6 +19,9 @@ pushd ../base $HOLE -f . -o ../boot/iso_root/boot/pbi.hole popd +# Copy the wallpaper to the ISO root +cp $WALLPAPER iso_root/boot + # Copy the kernel to the ISO root cp $KERNEL iso_root/boot