summaryrefslogtreecommitdiffstats
path: root/src/usr
diff options
context:
space:
mode:
authorMichael Brown2010-04-19 21:16:01 +0200
committerMichael Brown2010-04-20 00:43:39 +0200
commit8406115834d38bb743e01f35bfd36e835532415e (patch)
treeee1e3106e2cdc645d911ba5643f8414b21fc4c3e /src/usr
parent[eepro100] Remove link-state checking (diff)
downloadipxe-8406115834d38bb743e01f35bfd36e835532415e.tar.gz
ipxe-8406115834d38bb743e01f35bfd36e835532415e.tar.xz
ipxe-8406115834d38bb743e01f35bfd36e835532415e.zip
[build] Rename gPXE to iPXE
Access to the gpxe.org and etherboot.org domains and associated resources has been revoked by the registrant of the domain. Work around this problem by renaming project from gPXE to iPXE, and updating URLs to match. Also update README, LOG and COPYRIGHTS to remove obsolete information. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/usr')
-rw-r--r--src/usr/autoboot.c12
-rw-r--r--src/usr/dhcpmgmt.c8
-rw-r--r--src/usr/ifmgmt.c8
-rw-r--r--src/usr/imgmgmt.c10
-rw-r--r--src/usr/iwmgmt.c6
-rw-r--r--src/usr/pxemenu.c8
-rw-r--r--src/usr/route.c4
7 files changed, 28 insertions, 28 deletions
diff --git a/src/usr/autoboot.c b/src/usr/autoboot.c
index 2fa10e6bc..acc4efd6a 100644
--- a/src/usr/autoboot.c
+++ b/src/usr/autoboot.c
@@ -21,12 +21,12 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <string.h>
#include <stdio.h>
#include <errno.h>
-#include <gpxe/netdevice.h>
-#include <gpxe/dhcp.h>
-#include <gpxe/settings.h>
-#include <gpxe/image.h>
-#include <gpxe/sanboot.h>
-#include <gpxe/uri.h>
+#include <ipxe/netdevice.h>
+#include <ipxe/dhcp.h>
+#include <ipxe/settings.h>
+#include <ipxe/image.h>
+#include <ipxe/sanboot.h>
+#include <ipxe/uri.h>
#include <usr/ifmgmt.h>
#include <usr/route.h>
#include <usr/dhcpmgmt.h>
diff --git a/src/usr/dhcpmgmt.c b/src/usr/dhcpmgmt.c
index f82a3bb81..ed8a9fe65 100644
--- a/src/usr/dhcpmgmt.c
+++ b/src/usr/dhcpmgmt.c
@@ -21,10 +21,10 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <string.h>
#include <stdio.h>
#include <errno.h>
-#include <gpxe/netdevice.h>
-#include <gpxe/dhcp.h>
-#include <gpxe/monojob.h>
-#include <gpxe/process.h>
+#include <ipxe/netdevice.h>
+#include <ipxe/dhcp.h>
+#include <ipxe/monojob.h>
+#include <ipxe/process.h>
#include <usr/ifmgmt.h>
#include <usr/dhcpmgmt.h>
diff --git a/src/usr/ifmgmt.c b/src/usr/ifmgmt.c
index 95505fcf0..e031cd09e 100644
--- a/src/usr/ifmgmt.c
+++ b/src/usr/ifmgmt.c
@@ -23,10 +23,10 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <unistd.h>
#include <errno.h>
#include <console.h>
-#include <gpxe/netdevice.h>
-#include <gpxe/device.h>
-#include <gpxe/process.h>
-#include <gpxe/keys.h>
+#include <ipxe/netdevice.h>
+#include <ipxe/device.h>
+#include <ipxe/process.h>
+#include <ipxe/keys.h>
#include <usr/ifmgmt.h>
/** @file
diff --git a/src/usr/imgmgmt.c b/src/usr/imgmgmt.c
index 023e3f0f5..5e7629a60 100644
--- a/src/usr/imgmgmt.c
+++ b/src/usr/imgmgmt.c
@@ -22,11 +22,11 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
-#include <gpxe/image.h>
-#include <gpxe/downloader.h>
-#include <gpxe/monojob.h>
-#include <gpxe/open.h>
-#include <gpxe/uri.h>
+#include <ipxe/image.h>
+#include <ipxe/downloader.h>
+#include <ipxe/monojob.h>
+#include <ipxe/open.h>
+#include <ipxe/uri.h>
#include <usr/imgmgmt.h>
/** @file
diff --git a/src/usr/iwmgmt.c b/src/usr/iwmgmt.c
index dd456629f..27e779504 100644
--- a/src/usr/iwmgmt.c
+++ b/src/usr/iwmgmt.c
@@ -22,11 +22,11 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <console.h>
#include <string.h>
#include <errno.h>
-#include <gpxe/net80211.h>
-#include <gpxe/ethernet.h>
+#include <ipxe/net80211.h>
+#include <ipxe/ethernet.h>
#include <usr/ifmgmt.h>
#include <usr/iwmgmt.h>
-#include <gpxe/errortab.h>
+#include <ipxe/errortab.h>
/** @file
*
diff --git a/src/usr/pxemenu.c b/src/usr/pxemenu.c
index 519c200e1..bbd7670c5 100644
--- a/src/usr/pxemenu.c
+++ b/src/usr/pxemenu.c
@@ -27,10 +27,10 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <byteswap.h>
#include <curses.h>
#include <console.h>
-#include <gpxe/dhcp.h>
-#include <gpxe/keys.h>
-#include <gpxe/timer.h>
-#include <gpxe/process.h>
+#include <ipxe/dhcp.h>
+#include <ipxe/keys.h>
+#include <ipxe/timer.h>
+#include <ipxe/process.h>
#include <usr/dhcpmgmt.h>
#include <usr/autoboot.h>
diff --git a/src/usr/route.c b/src/usr/route.c
index 101d17075..1da7135bc 100644
--- a/src/usr/route.c
+++ b/src/usr/route.c
@@ -19,8 +19,8 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <stdio.h>
-#include <gpxe/netdevice.h>
-#include <gpxe/ip.h>
+#include <ipxe/netdevice.h>
+#include <ipxe/ip.h>
#include <usr/route.h>
/** @file