From 7a6e6d0617e4ec879996e9f46e6f4e170b6a8a9a Mon Sep 17 00:00:00 2001 From: KyGo-bot Date: Sat, 30 Aug 2025 17:05:35 -0500 Subject: [PATCH] Update custom.ipxe hiren-boot --- custom.ipxe | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/custom.ipxe b/custom.ipxe index 71718775..be6479c4 100644 --- a/custom.ipxe +++ b/custom.ipxe @@ -1,12 +1,24 @@ #!ipxe -### -### netboot.xyz-custom menu -### + +set base-url http://192.168.0.45:8080/hirenboot :start -echo Hello world! -sleep 10 -goto custom_exit +menu Please choose an option: +item hirens Hirens Boot CD PE x64 +item exit Exit +choose --default hirens --timeout 5000 selected +goto ${selected} + +:hirens +echo Booting Hirens Boot CD PE x64... +imgfree +kernel https://boot.netboot.xyz/wimboot +initrd -n bootmgr ${base-url}/BOOTMGR bootmgr || +initrd -n bootmgr.efi ${base-url}/bootmgr.efi bootmgr.efi || +initrd -n bcd ${base-url}/boot/bcd bcd|| +initrd -n boot.sdi ${base-url}/boot/boot.sdi boot.sdi|| +initrd -n boot.wim ${base-url}/sources/boot.wim boot.wim +boot -:custom_exit -exit 0 +:exit +exit