diff --git a/files/ipxe/menu.ipxe b/files/ipxe/menu.ipxe index 8c0cd7e..7f51aa2 100755 --- a/files/ipxe/menu.ipxe +++ b/files/ipxe/menu.ipxe @@ -9,6 +9,8 @@ item debian12auto Debian 12.2 Server Auto Install item debian12manual Debian 12.2 Server Manual Install item debian12live Debian 12.2 Live Installer Xfce item debian12livecustom Debian 12.2 Live Custom Xfce +item --gap -- -------------------------- Proxmox 8.0 -------------------------------- +item proxmox8 Proxmox 8.0 Install item --gap -- -------------------------- Debian 11.7 -------------------------------- item debian11auto Debian 11.7 Server Auto Install item debian11manual Debian 11.7 Server Manual Install @@ -80,6 +82,10 @@ goto start chain http://192.168.1.50/files/debianlivecustom-12.2/boot-live.ipxe || goto failed goto start +:proxmox8 +chain http://192.168.1.50/files/proxmox8/boot.ipxe || goto failed +goto start + :debian11auto chain http://192.168.1.50/files/debian-11.7/boot-auto.ipxe || goto failed goto start @@ -111,4 +117,4 @@ goto start :netboot dhcp chain --autofree http://boot.netboot.xyz || goto failed -goto start \ No newline at end of file +goto start diff --git a/files/proxmox8/boot.ipxe b/files/proxmox8/boot.ipxe new file mode 100644 index 0000000..de0fa9b --- /dev/null +++ b/files/proxmox8/boot.ipxe @@ -0,0 +1,5 @@ +#!ipxe +dhcp +kernel http://192.168.1.50/files/proxmox8/linux26 vga=791 video=vesafb:ywrap,mtrr ramdisk_size=16777216 rw quiet initrd=initrd splash=silent +initrd http://192.168.1.50/files/proxmox8/initrd +boot diff --git a/files/proxmox8/initrd b/files/proxmox8/initrd new file mode 100644 index 0000000..11a5a89 Binary files /dev/null and b/files/proxmox8/initrd differ diff --git a/files/proxmox8/linux26 b/files/proxmox8/linux26 new file mode 100644 index 0000000..dcbdb18 Binary files /dev/null and b/files/proxmox8/linux26 differ