From d86d6711d8f724e3131ca63a06001cd4fec6d3c2 Mon Sep 17 00:00:00 2001 From: Antony Messerli Date: Thu, 24 Sep 2015 12:12:30 -0500 Subject: [PATCH] Move from cdn.* to boot.* --- README.md | 6 +++--- docs/index.md | 12 ++++++------ ipxe/disks/netboot.xyz-dhcp | 2 +- ipxe/disks/netboot.xyz-static | 2 +- src/boot.cfg | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index b97d9228..7f55162e 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,9 @@ Check out the new netboot.xyz documentation hosted at ReadTheDocs: Grab these bootloaders and drop them in Fusion/VirtualBox/DRAC/iLO to get started: -* ISO: [dhcp](http://cdn.netboot.xyz/ipxe/netboot.xyz-dhcp.iso) | [static](http://cdn.netboot.xyz/ipxe/netboot.xyz-static.iso) -* Floppy/USB: [dhcp](http://cdn.netboot.xyz/ipxe/netboot.xyz-dhcp.dsk) | [static](http://cdn.netboot.xyz/ipxe/netboot.xyz-dhcp.dsk) -* Linux Bootable Kernel: [dhcp](http://cdn.netboot.xyz/ipxe/netboot.xyz-dhcp.lkrn) | [static](http://cdn.netboot.xyz/ipxe/netboot.xyz-static.lkrn) +* ISO: [dhcp](http://boot.netboot.xyz/ipxe/netboot.xyz-dhcp.iso) | [static](http://boot.netboot.xyz/ipxe/netboot.xyz-static.iso) +* Floppy/USB: [dhcp](http://boot.netboot.xyz/ipxe/netboot.xyz-dhcp.dsk) | [static](http://boot.netboot.xyz/ipxe/netboot.xyz-dhcp.dsk) +* Linux Bootable Kernel: [dhcp](http://boot.netboot.xyz/ipxe/netboot.xyz-dhcp.lkrn) | [static](http://boot.netboot.xyz/ipxe/netboot.xyz-static.lkrn) #### Feedback diff --git a/docs/index.md b/docs/index.md index dad67a40..974aacc1 100644 --- a/docs/index.md +++ b/docs/index.md @@ -6,11 +6,11 @@ You can remote attach the ISO to servers, set it up as a rescue option in Grub, ### Getting started -Grab these bootloaders and drop them into your favorite virtualization tool to start testing out netboot.xyz. These are precompiled versions of the latest version of [iPXE](http://https://github.com/ipxe/ipxe) that will chainload you to [http://cdn.netboot.xyz/menu.ipxe]( http://cdn.netboot.xyz/menu.ipxe). There are two versions of each, one if you have DHCP on your network, and one if you have to set a static IP before connecting outside of your network. +Grab these bootloaders and drop them into your favorite virtualization tool to start testing out netboot.xyz. These are precompiled versions of the latest version of [iPXE](http://https://github.com/ipxe/ipxe) that will chainload you to [http://boot.netboot.xyz/menu.ipxe](http://boot.netboot.xyz/menu.ipxe). There are two versions of each, one if you have DHCP on your network, and one if you have to set a static IP before connecting outside of your network. -* ISO: [dhcp](http://cdn.netboot.xyz/ipxe/netboot.xyz-dhcp.iso) | [static](http://cdn.netboot.xyz/ipxe/netboot.xyz-static.iso) -* Floppy/USB: [dhcp](http://cdn.netboot.xyz/ipxe/netboot.xyz-dhcp.dsk) | [static](http://cdn.netboot.xyz/ipxe/netboot.xyz-dhcp.dsk) -* Linux Kernel: [dhcp](http://cdn.netboot.xyz/ipxe/netboot.xyz-dhcp.lkrn) | [static](http://cdn.netboot.xyz/ipxe/netboot.xyz-static.lkrn) +* ISO: [dhcp](http://boot.netboot.xyz/ipxe/netboot.xyz-dhcp.iso) | [static](http://boot.netboot.xyz/ipxe/netboot.xyz-static.iso) +* Floppy/USB: [dhcp](http://boot.netboot.xyz/ipxe/netboot.xyz-dhcp.dsk) | [static](http://boot.netboot.xyz/ipxe/netboot.xyz-dhcp.dsk) +* Linux Kernel: [dhcp](http://boot.netboot.xyz/ipxe/netboot.xyz-dhcp.lkrn) | [static](http://boot.netboot.xyz/ipxe/netboot.xyz-static.lkrn) ### Booting Methods #### NIC with Embedded iPXE @@ -18,7 +18,7 @@ Grab these bootloaders and drop them into your favorite virtualization tool to s If you've already compiled your own iPXE, you can load up the netboot.xyz menu easily by entering CTRL-B when prompted setting DHCP and then chainloading iPXE: dhcp - chain http://cdn.netboot.xyz/menu.ipxe + chain http://boot.netboot.xyz/menu.ipxe If you don't have DHCP on your network, you can manually set your network information: @@ -27,7 +27,7 @@ If you don't have DHCP on your network, you can manually set your network inform set net0/gateway set dns ifopen net0 - chain http://cdn.netboot.xyz/menu.ipxe + chain http://boot.netboot.xyz/menu.ipxe #### Boot from iPXE ISO diff --git a/ipxe/disks/netboot.xyz-dhcp b/ipxe/disks/netboot.xyz-dhcp index 9cf8cab3..b19e20f7 100644 --- a/ipxe/disks/netboot.xyz-dhcp +++ b/ipxe/disks/netboot.xyz-dhcp @@ -22,7 +22,7 @@ echo Attempting chainload of netboot.xyz... goto menu || goto failsafe :menu -chain --autofree http://cdn.netboot.xyz/menu.ipxe +chain --autofree http://boot.netboot.xyz/menu.ipxe goto boot :failsafe diff --git a/ipxe/disks/netboot.xyz-static b/ipxe/disks/netboot.xyz-static index 4a20283f..9353949f 100644 --- a/ipxe/disks/netboot.xyz-static +++ b/ipxe/disks/netboot.xyz-static @@ -18,7 +18,7 @@ echo Attempting chainload of netboot.xyz... goto menu || goto failsafe :menu -chain --autofree http://cdn.netboot.xyz/menu.ipxe +chain --autofree http://boot.netboot.xyz/menu.ipxe goto boot :failsafe diff --git a/src/boot.cfg b/src/boot.cfg index d598b084..9165f549 100644 --- a/src/boot.cfg +++ b/src/boot.cfg @@ -4,7 +4,7 @@ set site_name netboot.xyz # set boot domain -set boot_domain cdn.netboot.xyz +set boot_domain boot.netboot.xyz # set mirror domain set mirror mirror.rackspace.com