summaryrefslogtreecommitdiffstats
path: root/src/util
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/util
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/util')
-rwxr-xr-xsrc/util/diffsize.pl8
-rw-r--r--src/util/efirom.c6
-rw-r--r--src/util/elf2efi.c4
-rwxr-xr-xsrc/util/fnrec.sh2
-rwxr-xr-xsrc/util/genliso2
-rwxr-xr-xsrc/util/gensdsk2
-rw-r--r--src/util/iccfix.c2
7 files changed, 13 insertions, 13 deletions
diff --git a/src/util/diffsize.pl b/src/util/diffsize.pl
index d4978c2a..ced07862 100755
--- a/src/util/diffsize.pl
+++ b/src/util/diffsize.pl
@@ -1,11 +1,11 @@
#!/usr/bin/perl -w
# usage:
-# [somebody@somewhere ~/gpxe/src]$ ./util/diffsize.pl [<old rev> [<new rev>]]
+# [somebody@somewhere ~/ipxe/src]$ ./util/diffsize.pl [<old rev> [<new rev>]]
# by default <old rev> is HEAD and <new rev> is the working tree
use strict;
--d "bin" or die "Please run me in the gPXE src directory\n";
+-d "bin" or die "Please run me in the iPXE src directory\n";
mkdir ".sizes";
my($oldrev, $newrev);
@@ -47,8 +47,8 @@ sub calc_sizes($$) {
system("git checkout $name >/dev/null"); $res ||= $?;
}
- system("make -j4 bin/gpxe.lkrn >/dev/null"); $res ||= $?;
- system("make bin/gpxe.lkrn.sizes > .sizes/$rev.sizes"); $res ||= $?;
+ system("make -j4 bin/ipxe.lkrn >/dev/null"); $res ||= $?;
+ system("make bin/ipxe.lkrn.sizes > .sizes/$rev.sizes"); $res ||= $?;
if (defined $name) {
system("git checkout $lastrev >/dev/null"); $res ||= $?;
diff --git a/src/util/efirom.c b/src/util/efirom.c
index 9369db87..d0bdace6 100644
--- a/src/util/efirom.c
+++ b/src/util/efirom.c
@@ -26,9 +26,9 @@
#include <errno.h>
#include <assert.h>
#include <getopt.h>
-#include <gpxe/efi/efi.h>
-#include <gpxe/efi/IndustryStandard/PeImage.h>
-#include <gpxe/efi/IndustryStandard/Pci22.h>
+#include <ipxe/efi/efi.h>
+#include <ipxe/efi/IndustryStandard/PeImage.h>
+#include <ipxe/efi/IndustryStandard/Pci22.h>
#define eprintf(...) fprintf ( stderr, __VA_ARGS__ )
diff --git a/src/util/elf2efi.c b/src/util/elf2efi.c
index bb766bd3..7870bb90 100644
--- a/src/util/elf2efi.c
+++ b/src/util/elf2efi.c
@@ -27,8 +27,8 @@
#include <assert.h>
#include <getopt.h>
#include <bfd.h>
-#include <gpxe/efi/efi.h>
-#include <gpxe/efi/IndustryStandard/PeImage.h>
+#include <ipxe/efi/efi.h>
+#include <ipxe/efi/IndustryStandard/PeImage.h>
#include <libgen.h>
#define eprintf(...) fprintf ( stderr, __VA_ARGS__ )
diff --git a/src/util/fnrec.sh b/src/util/fnrec.sh
index 00784ac5..3be5ceaa 100755
--- a/src/util/fnrec.sh
+++ b/src/util/fnrec.sh
@@ -24,7 +24,7 @@ Look up symbol names in <elf-binary> for function addresses from
<addresses-file>.
Example:
-$0 bin/gpxe.hd.tmp fnrec.dat
+$0 bin/ipxe.hd.tmp fnrec.dat
EOF
exit 1
fi
diff --git a/src/util/genliso b/src/util/genliso
index 1f1c1168..184408ad 100755
--- a/src/util/genliso
+++ b/src/util/genliso
@@ -34,7 +34,7 @@ mformat -f 1440 -C -i $img ::
cfg=$dir/syslinux.cfg
cat > $cfg <<EOF
# These default options can be changed in the genliso script
-SAY gPXE ISO boot image generated by genliso
+SAY iPXE ISO boot image generated by genliso
TIMEOUT 30
EOF
diff --git a/src/util/gensdsk b/src/util/gensdsk
index a8661586..9e8361d4 100755
--- a/src/util/gensdsk
+++ b/src/util/gensdsk
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# Generate a syslinux floppy that loads a gPXE image
+# Generate a syslinux floppy that loads a iPXE image
#
# gensdsk foo.sdsk foo.lkrn
#
diff --git a/src/util/iccfix.c b/src/util/iccfix.c
index 303ae9ca..8b555c54 100644
--- a/src/util/iccfix.c
+++ b/src/util/iccfix.c
@@ -9,7 +9,7 @@
#include <sys/stat.h>
#include <sys/mman.h>
#include <elf.h>
-#include <gpxe/tables.h>
+#include <ipxe/tables.h>
#define DEBUG 0