[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:
Michael Brown
2010-04-19 20:16:01 +01:00
parent 2a36703af2
commit 8406115834
597 changed files with 2220 additions and 2288 deletions

View File

@@ -19,8 +19,8 @@
#include <stddef.h>
#include <stdio.h>
#include <assert.h>
#include <gpxe/uaccess.h>
#include <gpxe/gdbstub.h>
#include <ipxe/uaccess.h>
#include <ipxe/gdbstub.h>
#include <gdbmach.h>
/** @file

View File

@@ -18,7 +18,7 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <gpxe/io.h>
#include <ipxe/io.h>
#include <pic8259.h>
/** @file

View File

@@ -25,8 +25,8 @@ FILE_LICENCE ( GPL2_OR_LATER );
*/
#include <assert.h>
#include <gpxe/timer.h>
#include <gpxe/timer2.h>
#include <ipxe/timer.h>
#include <ipxe/timer2.h>
/**
* Number of TSC ticks per microsecond

View File

@@ -1,6 +1,6 @@
#include <gpxe/io.h>
#include <ipxe/io.h>
#include <registers.h>
#include <gpxe/memmap.h>
#include <ipxe/memmap.h>
/*
* Originally by Eric Biederman

View File

@@ -14,8 +14,8 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <stddef.h>
#include <gpxe/timer2.h>
#include <gpxe/io.h>
#include <ipxe/timer2.h>
#include <ipxe/io.h>
/* Timers tick over at this rate */
#define TIMER2_TICKS_PER_SEC 1193180U

View File

@@ -7,9 +7,9 @@
#include "stddef.h"
#include "string.h"
#include <gpxe/io.h>
#include <ipxe/io.h>
#include "console.h"
#include <gpxe/init.h>
#include <ipxe/init.h>
#include "vga.h"
struct console_driver vga_console;

View File

@@ -18,12 +18,12 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <gpxe/io.h>
#include <gpxe/x86_io.h>
#include <ipxe/io.h>
#include <ipxe/x86_io.h>
/** @file
*
* gPXE I/O API for x86
* iPXE I/O API for x86
*
*/