mirror of
https://github.com/ipxe/ipxe
synced 2026-02-11 05:38:16 +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:
@@ -19,9 +19,9 @@
|
||||
FILE_LICENCE ( GPL2_OR_LATER );
|
||||
|
||||
#include <errno.h>
|
||||
#include <gpxe/efi/efi.h>
|
||||
#include <gpxe/image.h>
|
||||
#include <gpxe/features.h>
|
||||
#include <ipxe/efi/efi.h>
|
||||
#include <ipxe/image.h>
|
||||
#include <ipxe/features.h>
|
||||
|
||||
FEATURE ( FEATURE_IMAGE, "EFI", DHCP_EB_FEATURE_EFI, 1 );
|
||||
|
||||
|
||||
@@ -30,10 +30,10 @@ FILE_LICENCE ( GPL2_OR_LATER );
|
||||
|
||||
#include <errno.h>
|
||||
#include <elf.h>
|
||||
#include <gpxe/uaccess.h>
|
||||
#include <gpxe/segment.h>
|
||||
#include <gpxe/image.h>
|
||||
#include <gpxe/elf.h>
|
||||
#include <ipxe/uaccess.h>
|
||||
#include <ipxe/segment.h>
|
||||
#include <ipxe/image.h>
|
||||
#include <ipxe/elf.h>
|
||||
|
||||
typedef Elf32_Ehdr Elf_Ehdr;
|
||||
typedef Elf32_Phdr Elf_Phdr;
|
||||
|
||||
@@ -2,16 +2,16 @@
|
||||
*
|
||||
* Embedded image support
|
||||
*
|
||||
* Embedded images are images built into the gPXE binary and do not require
|
||||
* Embedded images are images built into the iPXE binary and do not require
|
||||
* fetching over the network.
|
||||
*/
|
||||
|
||||
FILE_LICENCE ( GPL2_OR_LATER );
|
||||
|
||||
#include <string.h>
|
||||
#include <gpxe/image.h>
|
||||
#include <gpxe/uaccess.h>
|
||||
#include <gpxe/init.h>
|
||||
#include <ipxe/image.h>
|
||||
#include <ipxe/uaccess.h>
|
||||
#include <ipxe/init.h>
|
||||
|
||||
/**
|
||||
* Free embedded image
|
||||
|
||||
@@ -21,7 +21,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
|
||||
/**
|
||||
* @file
|
||||
*
|
||||
* gPXE scripts
|
||||
* iPXE scripts
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -29,7 +29,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
|
||||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include <gpxe/image.h>
|
||||
#include <ipxe/image.h>
|
||||
|
||||
struct image_type script_image_type __image_type ( PROBE_NORMAL );
|
||||
|
||||
@@ -91,7 +91,7 @@ static int script_exec ( struct image *image ) {
|
||||
* @ret rc Return status code
|
||||
*/
|
||||
static int script_load ( struct image *image ) {
|
||||
static const char magic[] = "#!gpxe";
|
||||
static const char magic[] = "#!ipxe";
|
||||
char test[ sizeof ( magic ) - 1 /* NUL */ + 1 /* terminating space */];
|
||||
|
||||
/* Sanity check */
|
||||
|
||||
@@ -26,10 +26,10 @@ FILE_LICENCE ( GPL2_OR_LATER );
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#include <gpxe/uaccess.h>
|
||||
#include <gpxe/memmap.h>
|
||||
#include <gpxe/errortab.h>
|
||||
#include <gpxe/segment.h>
|
||||
#include <ipxe/uaccess.h>
|
||||
#include <ipxe/memmap.h>
|
||||
#include <ipxe/errortab.h>
|
||||
#include <ipxe/segment.h>
|
||||
|
||||
/**
|
||||
* Prepare segment for loading
|
||||
|
||||
Reference in New Issue
Block a user