From 8045d4535a7c6d164db8612c97546a2fc79ae989 Mon Sep 17 00:00:00 2001 From: Antony Messerli Date: Mon, 11 Jan 2016 08:40:29 -0600 Subject: [PATCH] Drop Windows for now until I can find a new home for the images --- README.md | 1 - docs/index.md | 1 - src/menu.ipxe | 5 ----- src/windows.ipxe | 20 -------------------- 4 files changed, 27 deletions(-) delete mode 100644 src/windows.ipxe diff --git a/README.md b/README.md index 54b4d97a..b18f682c 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,6 @@ Full documentation is at ReadTheDocs: * [Scientific](http://scientificlinux.org) * [TinyCoreLinux](http://distro.ibiblio.org/tinycorelinux/) * [Ubuntu](http://www.ubuntu.com/) -* [WinPE](http://www.microsoft.com/) #### Utilities diff --git a/docs/index.md b/docs/index.md index 273f7434..e7ab12ca 100644 --- a/docs/index.md +++ b/docs/index.md @@ -52,7 +52,6 @@ If you already have iPXE up and running on the network, you can hit netboot.xyz * [Scientific](http://scientificlinux.org) * [TinyCoreLinux](http://distro.ibiblio.org/tinycorelinux/) * [Ubuntu](http://www.ubuntu.com/) -* [WinPE](http://www.microsoft.com/) #### Utilities diff --git a/src/menu.ipxe b/src/menu.ipxe index f7fea5e8..f8166263 100644 --- a/src/menu.ipxe +++ b/src/menu.ipxe @@ -31,7 +31,6 @@ item --gap Installers: item linux ${space} Linux Installers item bsd ${space} BSD Installers item freedos ${space} FreeDOS Installers -item windows ${space} Windows Installers item --gap Tools: item utils ${space} Utilities item shell ${space} iPXE shell @@ -101,10 +100,6 @@ goto main_menu chain freedos.ipxe goto main_menu -:windows -chain windows.ipxe -goto main_menu - :hypervisors chain hypervisors.ipxe goto main_menu diff --git a/src/windows.ipxe b/src/windows.ipxe deleted file mode 100644 index 8176bfec..00000000 --- a/src/windows.ipxe +++ /dev/null @@ -1,20 +0,0 @@ -#!ipxe - -menu Windows Installers -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