mirror of
https://github.com/ipxe/ipxe
synced 2025-12-13 15:31:42 +03:00
[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>
This commit is contained in:
@@ -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 ||= $?;
|
||||
|
||||
@@ -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__ )
|
||||
|
||||
|
||||
@@ -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__ )
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
#
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user