mirror of
https://github.com/netbootxyz/netboot.xyz.git
synced 2026-01-23 02:34:26 +00:00
Merge pull request #11 from antonym/windowspe
Adding options to load WinPE
This commit is contained in:
commit
5323c8b538
2 changed files with 25 additions and 0 deletions
|
|
@ -30,6 +30,7 @@ item local ${space} Boot from local hdd
|
|||
item --gap Installers:
|
||||
item linux ${space} Linux Operating Systems
|
||||
item bsd ${space} BSD Operating Systems
|
||||
item windows ${space} Windows Operating Systems
|
||||
item --gap Tools:
|
||||
item utils ${space} Utilities
|
||||
item shell ${space} iPXE shell
|
||||
|
|
@ -95,6 +96,10 @@ goto main_menu
|
|||
chain bsd.ipxe
|
||||
goto main_menu
|
||||
|
||||
:windows
|
||||
chain windows.ipxe
|
||||
goto main_menu
|
||||
|
||||
:hypervisors
|
||||
chain hypervisors.ipxe
|
||||
goto main_menu
|
||||
|
|
|
|||
20
src/windows.ipxe
Normal file
20
src/windows.ipxe
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#!ipxe
|
||||
|
||||
menu Windows
|
||||
item --gap Windows Boot Environments
|
||||
item winpe ${space} Windows Preinstallation Environment (WinPE - x64)
|
||||
choose version || goto windows_exit
|
||||
|
||||
set mirror http://boot.netboot.xyz/images/windows/winpe/
|
||||
|
||||
:winpe
|
||||
set arch amd64
|
||||
kernel ${mirror}wimboot
|
||||
initrd ${mirror}${arch}/media/BOOTMGR BOOTMGR
|
||||
initrd ${mirror}${arch}/media/BOOT/BCD BCD
|
||||
initrd ${mirror}${arch}/media/BOOT/BOOT.SDI BOOT.SDI
|
||||
initrd ${mirror}${arch}/media/SOURCES/BOOT.WIM BOOT.WIM
|
||||
boot
|
||||
|
||||
:windows_exit
|
||||
exit 0
|
||||
Loading…
Add table
Add a link
Reference in a new issue