[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

@@ -93,22 +93,22 @@ INCDIRS += include .
# Default build target: build the most common targets and print out a
# helpfully suggestive message
#
all : bin/blib.a bin/gpxe.dsk bin/gpxe.iso bin/gpxe.usb bin/undionly.kpxe
all : bin/blib.a bin/ipxe.dsk bin/ipxe.iso bin/ipxe.usb bin/undionly.kpxe
@$(ECHO) '==========================================================='
@$(ECHO)
@$(ECHO) 'To create a bootable floppy, type'
@$(ECHO) ' cat bin/gpxe.dsk > /dev/fd0'
@$(ECHO) ' cat bin/ipxe.dsk > /dev/fd0'
@$(ECHO) 'where /dev/fd0 is your floppy drive. This will erase any'
@$(ECHO) 'data already on the disk.'
@$(ECHO)
@$(ECHO) 'To create a bootable USB key, type'
@$(ECHO) ' cat bin/gpxe.usb > /dev/sdX'
@$(ECHO) ' cat bin/ipxe.usb > /dev/sdX'
@$(ECHO) 'where /dev/sdX is your USB key, and is *not* a real hard'
@$(ECHO) 'disk on your system. This will erase any data already on'
@$(ECHO) 'the USB key.'
@$(ECHO)
@$(ECHO) 'To create a bootable CD-ROM, burn the ISO image '
@$(ECHO) 'bin/gpxe.iso to a blank CD-ROM.'
@$(ECHO) 'bin/ipxe.iso to a blank CD-ROM.'
@$(ECHO)
@$(ECHO) 'These images contain drivers for all supported cards. You'
@$(ECHO) 'can build more customised images, and ROM images, using'
@@ -140,7 +140,7 @@ CFLAGS += -DVERSION_MAJOR=$(VERSION_MAJOR) \
-DVERSION_MINOR=$(VERSION_MINOR) \
-DVERSION_PATCH=$(VERSION_PATCH) \
-DVERSION=\"$(VERSION)\"
IDENT = '$(@F) $(VERSION) (GPL) etherboot.org'
IDENT = '$(@F) $(VERSION) (GPL) ipxe.org'
version :
@$(ECHO) $(VERSION)

View File

@@ -569,7 +569,7 @@ CLEANUP += $(BIN)/NIC # Doesn't match the $(BIN)/*.* pattern
# TGT_ROM_NAME : the ROM name (e.g. "dfe538")
# TGT_MEDIA : the media type (e.g. "rom")
#
DRIVERS_gpxe = $(DRIVERS)
DRIVERS_ipxe = $(DRIVERS)
CARD_DRIVER = $(firstword $(DRIVER_$(1)) $(1))
TGT_ELEMENTS = $(subst --, ,$(firstword $(subst ., ,$(notdir $@))))
TGT_PREFIX = $(word 2,$(subst ., ,$(notdir $@)))
@@ -851,9 +851,9 @@ allall: allroms allzroms allpxes allisos alldsks
allroms allzroms : all%s : $(foreach ROM,$(ROMS),$(BIN)/$(ROM).%)
allpxes allisos alldsks : all%s : $(foreach DRIVER,$(DRIVERS),$(BIN)/$(DRIVER).%)
# Alias for gpxe.%
# Alias for ipxe.%
#
$(BIN)/etherboot.% : $(BIN)/gpxe.%
$(BIN)/etherboot.% : $(BIN)/ipxe.%
ln -sf $(notdir $<) $@
endif # defined(BIN)

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
*
*/

View File

@@ -22,7 +22,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <gpxe/pci.h>
#include <ipxe/pci.h>
#include <undi.h>
#include <undirom.h>
#include <undiload.h>

View File

@@ -26,7 +26,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <bios.h>
#include <pnpbios.h>
#include <basemem.h>
#include <gpxe/pci.h>
#include <ipxe/pci.h>
#include <undi.h>
#include <undirom.h>
#include <undiload.h>

View File

@@ -25,11 +25,11 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <biosint.h>
#include <pnpbios.h>
#include <basemem_packet.h>
#include <gpxe/io.h>
#include <gpxe/iobuf.h>
#include <gpxe/netdevice.h>
#include <gpxe/if_ether.h>
#include <gpxe/ethernet.h>
#include <ipxe/io.h>
#include <ipxe/iobuf.h>
#include <ipxe/netdevice.h>
#include <ipxe/if_ether.h>
#include <ipxe/ethernet.h>
#include <undi.h>
#include <undinet.h>
#include <pxeparent.h>

View File

@@ -21,8 +21,8 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <gpxe/device.h>
#include <gpxe/init.h>
#include <ipxe/device.h>
#include <ipxe/init.h>
#include <undi.h>
#include <undinet.h>
#include <undipreload.h>

View File

@@ -22,7 +22,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <realmode.h>
#include <bios.h>
#include <basemem.h>
#include <gpxe/hidemem.h>
#include <ipxe/hidemem.h>
/** @file
*

View File

@@ -21,7 +21,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <assert.h>
#include <realmode.h>
#include <console.h>
#include <gpxe/ansiesc.h>
#include <ipxe/ansiesc.h>
#define ATTR_BOLD 0x08

View File

@@ -3,8 +3,8 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <stdio.h>
#include <realmode.h>
#include <bios.h>
#include <gpxe/io.h>
#include <gpxe/timer.h>
#include <ipxe/io.h>
#include <ipxe/timer.h>
#define K_RDWR 0x60 /* keyboard data & cmds (read/write) */
#define K_STATUS 0x64 /* keyboard status */

View File

@@ -22,9 +22,9 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <biosint.h>
#include <basemem.h>
#include <fakee820.h>
#include <gpxe/init.h>
#include <gpxe/memmap.h>
#include <gpxe/hidemem.h>
#include <ipxe/init.h>
#include <ipxe/memmap.h>
#include <ipxe/hidemem.h>
/** Set to true if you want to test a fake E820 map */
#define FAKE_E820 0
@@ -33,7 +33,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#define ALIGN_HIDDEN 4096 /* 4kB page alignment should be enough */
/**
* A hidden region of gPXE
* A hidden region of iPXE
*
* This represents a region that will be edited out of the system's
* memory map.
@@ -138,7 +138,7 @@ static void hide_etherboot ( void ) {
unsigned int fbms;
/* Dump memory map before mangling */
DBG ( "Hiding gPXE from system memory map\n" );
DBG ( "Hiding iPXE from system memory map\n" );
get_memmap ( &memmap );
/* Hook in fake E820 map, if we're testing one */
@@ -178,7 +178,7 @@ static void hide_etherboot ( void ) {
&int15_vector );
/* Dump memory map after mangling */
DBG ( "Hidden gPXE from system memory map\n" );
DBG ( "Hidden iPXE from system memory map\n" );
get_memmap ( &memmap );
}

View File

@@ -23,7 +23,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <realmode.h>
#include <bios.h>
#include <memsizes.h>
#include <gpxe/memmap.h>
#include <ipxe/memmap.h>
/**
* @file

View File

@@ -1,5 +1,5 @@
#include <gpxe/netdevice.h>
#include <gpxe/command.h>
#include <ipxe/netdevice.h>
#include <ipxe/command.h>
#include <hci/ifmgmt_cmd.h>
#include <pxe_call.h>

View File

@@ -32,12 +32,12 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <assert.h>
#include <realmode.h>
#include <bzimage.h>
#include <gpxe/uaccess.h>
#include <gpxe/image.h>
#include <gpxe/segment.h>
#include <gpxe/init.h>
#include <gpxe/cpio.h>
#include <gpxe/features.h>
#include <ipxe/uaccess.h>
#include <ipxe/image.h>
#include <ipxe/segment.h>
#include <ipxe/init.h>
#include <ipxe/cpio.h>
#include <ipxe/features.h>
FEATURE ( FEATURE_IMAGE, "bzImage", DHCP_EB_FEATURE_BZIMAGE, 1 );
@@ -201,7 +201,7 @@ static void bzimage_update_header ( struct image *image,
/* Set loader type */
if ( bzimg->version >= 0x0200 )
bzimg->bzhdr.type_of_loader = BZI_LOADER_TYPE_GPXE;
bzimg->bzhdr.type_of_loader = BZI_LOADER_TYPE_IPXE;
/* Set heap end pointer */
if ( bzimg->version >= 0x0201 ) {

View File

@@ -34,11 +34,11 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <realmode.h>
#include <basemem.h>
#include <comboot.h>
#include <gpxe/uaccess.h>
#include <gpxe/image.h>
#include <gpxe/segment.h>
#include <gpxe/init.h>
#include <gpxe/memmap.h>
#include <ipxe/uaccess.h>
#include <ipxe/image.h>
#include <ipxe/segment.h>
#include <ipxe/init.h>
#include <ipxe/memmap.h>
struct image_type com32_image_type __image_type ( PROBE_NORMAL );

View File

@@ -34,11 +34,11 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <realmode.h>
#include <basemem.h>
#include <comboot.h>
#include <gpxe/uaccess.h>
#include <gpxe/image.h>
#include <gpxe/segment.h>
#include <gpxe/init.h>
#include <gpxe/features.h>
#include <ipxe/uaccess.h>
#include <ipxe/image.h>
#include <ipxe/segment.h>
#include <ipxe/init.h>
#include <ipxe/features.h>
FEATURE ( FEATURE_IMAGE, "COMBOOT", DHCP_EB_FEATURE_COMBOOT, 1 );

View File

@@ -20,10 +20,10 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <errno.h>
#include <elf.h>
#include <gpxe/image.h>
#include <gpxe/elf.h>
#include <gpxe/features.h>
#include <gpxe/init.h>
#include <ipxe/image.h>
#include <ipxe/elf.h>
#include <ipxe/features.h>
#include <ipxe/init.h>
/**
* @file

View File

@@ -31,11 +31,11 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <realmode.h>
#include <bootsector.h>
#include <int13.h>
#include <gpxe/uaccess.h>
#include <gpxe/image.h>
#include <gpxe/segment.h>
#include <gpxe/ramdisk.h>
#include <gpxe/init.h>
#include <ipxe/uaccess.h>
#include <ipxe/image.h>
#include <ipxe/segment.h>
#include <ipxe/ramdisk.h>
#include <ipxe/init.h>
#define ISO9660_BLKSIZE 2048
#define ELTORITO_VOL_DESC_OFFSET ( 17 * ISO9660_BLKSIZE )

View File

@@ -30,13 +30,13 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <assert.h>
#include <realmode.h>
#include <multiboot.h>
#include <gpxe/uaccess.h>
#include <gpxe/image.h>
#include <gpxe/segment.h>
#include <gpxe/memmap.h>
#include <gpxe/elf.h>
#include <gpxe/init.h>
#include <gpxe/features.h>
#include <ipxe/uaccess.h>
#include <ipxe/image.h>
#include <ipxe/segment.h>
#include <ipxe/memmap.h>
#include <ipxe/elf.h>
#include <ipxe/init.h>
#include <ipxe/features.h>
FEATURE ( FEATURE_IMAGE, "Multiboot", DHCP_EB_FEATURE_MULTIBOOT, 1 );
@@ -242,7 +242,7 @@ static struct multiboot_info __bss16 ( mbinfo );
#define mbinfo __use_data16 ( mbinfo )
/** The multiboot bootloader name */
static char __data16_array ( mb_bootloader_name, [] ) = "gPXE " VERSION;
static char __data16_array ( mb_bootloader_name, [] ) = "iPXE " VERSION;
#define mb_bootloader_name __use_data16 ( mb_bootloader_name )
/** The multiboot memory map */

View File

@@ -4,13 +4,13 @@
#include <gateA20.h>
#include <memsizes.h>
#include <basemem_packet.h>
#include <gpxe/uaccess.h>
#include <gpxe/segment.h>
#include <gpxe/init.h>
#include <gpxe/netdevice.h>
#include <gpxe/fakedhcp.h>
#include <gpxe/image.h>
#include <gpxe/features.h>
#include <ipxe/uaccess.h>
#include <ipxe/segment.h>
#include <ipxe/init.h>
#include <ipxe/netdevice.h>
#include <ipxe/fakedhcp.h>
#include <ipxe/image.h>
#include <ipxe/features.h>
/** @file
*

View File

@@ -27,11 +27,11 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <pxe.h>
#include <pxe_call.h>
#include <gpxe/uaccess.h>
#include <gpxe/image.h>
#include <gpxe/segment.h>
#include <gpxe/netdevice.h>
#include <gpxe/features.h>
#include <ipxe/uaccess.h>
#include <ipxe/image.h>
#include <ipxe/segment.h>
#include <ipxe/netdevice.h>
#include <ipxe/features.h>
FEATURE ( FEATURE_IMAGE, "PXE", DHCP_EB_FEATURE_PXE, 1 );
@@ -87,7 +87,7 @@ int pxe_load ( struct image *image ) {
return -ENOEXEC;
/* Rejecting zero-length images is also useful, since these
* end up looking to the user like bugs in gPXE.
* end up looking to the user like bugs in iPXE.
*/
if ( ! filesz )
return -ENOEXEC;

View File

@@ -9,6 +9,6 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <gpxe/x86_io.h>
#include <ipxe/x86_io.h>
#endif /* _BITS_IO_H */

View File

@@ -9,7 +9,7 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <gpxe/bios_nap.h>
#include <gpxe/efi/efix86_nap.h>
#include <ipxe/bios_nap.h>
#include <ipxe/efi/efix86_nap.h>
#endif /* _BITS_MAP_H */

View File

@@ -9,6 +9,6 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <gpxe/bios_smbios.h>
#include <ipxe/bios_smbios.h>
#endif /* _BITS_SMBIOS_H */

View File

@@ -9,7 +9,7 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <gpxe/bios_timer.h>
#include <gpxe/rdtsc_timer.h>
#include <ipxe/bios_timer.h>
#include <ipxe/rdtsc_timer.h>
#endif /* _BITS_TIMER_H */

View File

@@ -9,6 +9,6 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <gpxe/memtop_umalloc.h>
#include <ipxe/memtop_umalloc.h>
#endif /* _BITS_UMALLOC_H */

View File

@@ -86,11 +86,11 @@ struct bzimage_header {
/** bzImage boot loader identifier for Etherboot */
#define BZI_LOADER_TYPE_ETHERBOOT 0x40
/** bzImage boot loader identifier for gPXE
/** bzImage boot loader identifier for iPXE
*
* We advertise ourselves as Etherboot version 6.
*/
#define BZI_LOADER_TYPE_GPXE ( BZI_LOADER_TYPE_ETHERBOOT | 0x06 )
#define BZI_LOADER_TYPE_IPXE ( BZI_LOADER_TYPE_ETHERBOOT | 0x06 )
/** bzImage "load high" flag */
#define BZI_LOAD_HIGH 0x01

View File

@@ -11,7 +11,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <stdint.h>
#include <setjmp.h>
#include <gpxe/in.h>
#include <ipxe/in.h>
/** Segment used for COMBOOT PSP and image */
#define COMBOOT_PSP_SEG 0x07C0

View File

@@ -10,7 +10,7 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <stdint.h>
#include <gpxe/list.h>
#include <ipxe/list.h>
#include <realmode.h>
struct block_device;

View File

@@ -1,5 +1,5 @@
#ifndef _GPXE_ABFT_H
#define _GPXE_ABFT_H
#ifndef _IPXE_ABFT_H
#define _IPXE_ABFT_H
/** @file
*
@@ -10,8 +10,8 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <stdint.h>
#include <gpxe/acpi.h>
#include <gpxe/if_ether.h>
#include <ipxe/acpi.h>
#include <ipxe/if_ether.h>
/** AoE boot firmware table signature */
#define ABFT_SIG "aBFT"
@@ -34,4 +34,4 @@ struct abft_table {
extern void abft_fill_data ( struct aoe_session *aoe );
#endif /* _GPXE_ABFT_H */
#endif /* _IPXE_ABFT_H */

View File

@@ -1,5 +1,5 @@
#ifndef _GPXE_BIOS_NAP_H
#define _GPXE_BIOS_NAP_H
#ifndef _IPXE_BIOS_NAP_H
#define _IPXE_BIOS_NAP_H
/** @file
*
@@ -15,4 +15,4 @@ FILE_LICENCE ( GPL2_OR_LATER );
#define NAP_PREFIX_pcbios __pcbios_
#endif
#endif /* _GPXE_BIOS_NAP_H */
#endif /* _IPXE_BIOS_NAP_H */

View File

@@ -1,5 +1,5 @@
#ifndef _GPXE_BIOS_SMBIOS_H
#define _GPXE_BIOS_SMBIOS_H
#ifndef _IPXE_BIOS_SMBIOS_H
#define _IPXE_BIOS_SMBIOS_H
/** @file
*
@@ -15,4 +15,4 @@ FILE_LICENCE ( GPL2_OR_LATER );
#define SMBIOS_PREFIX_pcbios __pcbios_
#endif
#endif /* _GPXE_BIOS_SMBIOS_H */
#endif /* _IPXE_BIOS_SMBIOS_H */

View File

@@ -1,5 +1,5 @@
#ifndef _GPXE_BIOS_TIMER_H
#define _GPXE_BIOS_TIMER_H
#ifndef _IPXE_BIOS_TIMER_H
#define _IPXE_BIOS_TIMER_H
/** @file
*
@@ -15,7 +15,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#define TIMER_PREFIX_pcbios __pcbios_
#endif
#include <gpxe/timer2.h>
#include <ipxe/timer2.h>
/**
* Delay for a fixed number of microseconds
@@ -41,4 +41,4 @@ TIMER_INLINE ( pcbios, ticks_per_sec ) ( void ) {
return 18;
}
#endif /* _GPXE_BIOS_TIMER_H */
#endif /* _IPXE_BIOS_TIMER_H */

View File

@@ -1,5 +1,5 @@
#ifndef _GPXE_IBFT_H
#define _GPXE_IBFT_H
#ifndef _IPXE_IBFT_H
#define _IPXE_IBFT_H
/*
* Copyright Fen Systems Ltd. 2007. Portions of this code are derived
@@ -42,8 +42,8 @@ FILE_LICENCE ( BSD2 );
*/
#include <stdint.h>
#include <gpxe/acpi.h>
#include <gpxe/in.h>
#include <ipxe/acpi.h>
#include <ipxe/in.h>
/** iSCSI Boot Firmware Table signature */
#define IBFT_SIG "iBFT"
@@ -273,14 +273,14 @@ struct ibft_string_block {
unsigned int offset;
};
/** Amount of space reserved for strings in a gPXE iBFT */
/** Amount of space reserved for strings in a iPXE iBFT */
#define IBFT_STRINGS_SIZE 384
/**
* An iBFT created by gPXE
* An iBFT created by iPXE
*
*/
struct gpxe_ibft {
struct ipxe_ibft {
/** The fixed section */
struct ibft_table table;
/** The Initiator section */
@@ -299,4 +299,4 @@ struct iscsi_session;
extern int ibft_fill_data ( struct net_device *netdev,
struct iscsi_session *iscsi );
#endif /* _GPXE_IBFT_H */
#endif /* _IPXE_IBFT_H */

View File

@@ -1,5 +1,5 @@
#ifndef _GPXE_MEMTOP_UMALLOC_H
#define _GPXE_MEMTOP_UMALLOC_H
#ifndef _IPXE_MEMTOP_UMALLOC_H
#define _IPXE_MEMTOP_UMALLOC_H
/** @file
*
@@ -15,4 +15,4 @@ FILE_LICENCE ( GPL2_OR_LATER );
#define UMALLOC_PREFIX_memtop __memtop_
#endif
#endif /* _GPXE_MEMTOP_UMALLOC_H */
#endif /* _IPXE_MEMTOP_UMALLOC_H */

View File

@@ -1,5 +1,5 @@
#ifndef _GPXE_RDTSC_TIMER_H
#define _GPXE_RDTSC_TIMER_H
#ifndef _IPXE_RDTSC_TIMER_H
#define _IPXE_RDTSC_TIMER_H
/** @file
*
@@ -36,4 +36,4 @@ TIMER_INLINE ( rdtsc, currticks ) ( void ) {
return ticks;
}
#endif /* _GPXE_RDTSC_TIMER_H */
#endif /* _IPXE_RDTSC_TIMER_H */

View File

@@ -1,5 +1,5 @@
#ifndef _GPXE_SBFT_H
#define _GPXE_SBFT_H
#ifndef _IPXE_SBFT_H
#define _IPXE_SBFT_H
/*
* Copyright (C) 2009 Fen Systems Ltd <mbrown@fensystems.co.uk>.
@@ -40,15 +40,15 @@ FILE_LICENCE ( BSD2 );
* The working draft specification for the SRP boot firmware table can
* be found at
*
* http://etherboot.org/wiki/srp/sbft
* http://ipxe.org/wiki/srp/sbft
*
*/
#include <stdint.h>
#include <gpxe/acpi.h>
#include <gpxe/scsi.h>
#include <gpxe/srp.h>
#include <gpxe/ib_srp.h>
#include <ipxe/acpi.h>
#include <ipxe/scsi.h>
#include <ipxe/srp.h>
#include <ipxe/ib_srp.h>
/** SRP Boot Firmware Table signature */
#define SBFT_SIG "sBFT"
@@ -105,9 +105,9 @@ struct sbft_ib_subtable {
} __attribute__ (( packed ));
/**
* An sBFT created by gPXE
* An sBFT created by iPXE
*/
struct gpxe_sbft {
struct ipxe_sbft {
/** The table header */
struct sbft_table table;
/** The SCSI subtable */
@@ -122,4 +122,4 @@ struct srp_device;
extern int sbft_fill_data ( struct srp_device *srp );
#endif /* _GPXE_SBFT_H */
#endif /* _IPXE_SBFT_H */

View File

@@ -1,5 +1,5 @@
#ifndef _GPXE_TIMER2_H
#define _GPXE_TIMER2_H
#ifndef _IPXE_TIMER2_H
#define _IPXE_TIMER2_H
/** @file
*
@@ -11,4 +11,4 @@ FILE_LICENCE ( GPL2_OR_LATER );
extern void timer2_udelay ( unsigned long usecs );
#endif /* _GPXE_TIMER2_H */
#endif /* _IPXE_TIMER2_H */

View File

@@ -1,9 +1,9 @@
#ifndef _GPXE_X86_IO_H
#define _GPXE_X86_IO_H
#ifndef _IPXE_X86_IO_H
#define _IPXE_X86_IO_H
/** @file
*
* gPXE I/O API for x86
* iPXE I/O API for x86
*
* i386 uses direct pointer dereferences for accesses to memory-mapped
* I/O space, and the inX/outX instructions for accesses to
@@ -150,4 +150,4 @@ IOAPI_INLINE ( x86, mb ) ( void ) {
__asm__ __volatile__ ( "lock; addl $0, 0(%%esp)" : : : "memory" );
}
#endif /* _GPXE_X86_IO_H */
#endif /* _IPXE_X86_IO_H */

View File

@@ -5,7 +5,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include "pxe_types.h"
#include "pxe_api.h"
#include <gpxe/device.h>
#include <ipxe/device.h>
/* Parameter block for pxenv_unknown() */
struct s_PXENV_UNKNOWN {

View File

@@ -3,7 +3,7 @@
#include <stdint.h>
#include <registers.h>
#include <gpxe/uaccess.h>
#include <ipxe/uaccess.h>
/*
* Data structures and type definitions

View File

@@ -11,7 +11,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#ifndef ASSEMBLY
#include <gpxe/device.h>
#include <ipxe/device.h>
#include <pxe_types.h>
/** An UNDI device

View File

@@ -19,9 +19,9 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <realmode.h>
#include <gpxe/aoe.h>
#include <gpxe/netdevice.h>
#include <gpxe/abft.h>
#include <ipxe/aoe.h>
#include <ipxe/netdevice.h>
#include <ipxe/abft.h>
/** @file
*
@@ -30,7 +30,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
*/
#define abftab __use_data16 ( abftab )
/** The aBFT used by gPXE */
/** The aBFT used by iPXE */
struct abft_table __data16 ( abftab ) __attribute__ (( aligned ( 16 ) )) = {
/* ACPI header */
.acpi = {
@@ -38,7 +38,7 @@ struct abft_table __data16 ( abftab ) __attribute__ (( aligned ( 16 ) )) = {
.length = sizeof ( abftab ),
.revision = 1,
.oem_id = "FENSYS",
.oem_table_id = "gPXE",
.oem_table_id = "iPXE",
},
};

View File

@@ -3,11 +3,11 @@
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <gpxe/aoe.h>
#include <gpxe/ata.h>
#include <gpxe/netdevice.h>
#include <gpxe/sanboot.h>
#include <gpxe/abft.h>
#include <ipxe/aoe.h>
#include <ipxe/ata.h>
#include <ipxe/netdevice.h>
#include <ipxe/sanboot.h>
#include <ipxe/abft.h>
#include <int13.h>
FILE_LICENCE ( GPL2_OR_LATER );

View File

@@ -1,4 +1,4 @@
#include <gpxe/nap.h>
#include <ipxe/nap.h>
#include <realmode.h>
FILE_LICENCE ( GPL2_OR_LATER );

View File

@@ -22,8 +22,8 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <string.h>
#include <errno.h>
#include <assert.h>
#include <gpxe/uaccess.h>
#include <gpxe/smbios.h>
#include <ipxe/uaccess.h>
#include <ipxe/smbios.h>
#include <realmode.h>
#include <pnpbios.h>

View File

@@ -24,7 +24,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
*
*/
#include <gpxe/timer.h>
#include <ipxe/timer.h>
#include <realmode.h>
#include <bios.h>

View File

@@ -3,10 +3,10 @@
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <gpxe/sanboot.h>
#include <ipxe/sanboot.h>
#include <int13.h>
#include <gpxe/srp.h>
#include <gpxe/sbft.h>
#include <ipxe/srp.h>
#include <ipxe/sbft.h>
FILE_LICENCE ( GPL2_OR_LATER );

View File

@@ -33,14 +33,14 @@ FILE_LICENCE ( BSD2 );
#include <errno.h>
#include <byteswap.h>
#include <realmode.h>
#include <gpxe/pci.h>
#include <gpxe/acpi.h>
#include <gpxe/in.h>
#include <gpxe/netdevice.h>
#include <gpxe/ethernet.h>
#include <gpxe/dhcp.h>
#include <gpxe/iscsi.h>
#include <gpxe/ibft.h>
#include <ipxe/pci.h>
#include <ipxe/acpi.h>
#include <ipxe/in.h>
#include <ipxe/netdevice.h>
#include <ipxe/ethernet.h>
#include <ipxe/dhcp.h>
#include <ipxe/iscsi.h>
#include <ipxe/ibft.h>
/** @file
*
@@ -54,8 +54,8 @@ FILE_LICENCE ( BSD2 );
*/
#define ibftab __use_data16 ( ibftab )
/** The iBFT used by gPXE */
struct gpxe_ibft __data16 ( ibftab ) = {
/** The iBFT used by iPXE */
struct ipxe_ibft __data16 ( ibftab ) = {
/* Table header */
.table = {
/* ACPI header */
@@ -64,7 +64,7 @@ struct gpxe_ibft __data16 ( ibftab ) = {
.length = sizeof ( ibftab ),
.revision = 1,
.oem_id = "FENSYS",
.oem_table_id = "gPXE",
.oem_table_id = "iPXE",
},
/* Control block */
.control = {

View File

@@ -23,9 +23,9 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <byteswap.h>
#include <errno.h>
#include <assert.h>
#include <gpxe/list.h>
#include <gpxe/blockdev.h>
#include <gpxe/memmap.h>
#include <ipxe/list.h>
#include <ipxe/blockdev.h>
#include <ipxe/memmap.h>
#include <realmode.h>
#include <bios.h>
#include <biosint.h>

View File

@@ -3,10 +3,10 @@
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <gpxe/iscsi.h>
#include <gpxe/netdevice.h>
#include <gpxe/ibft.h>
#include <gpxe/sanboot.h>
#include <ipxe/iscsi.h>
#include <ipxe/netdevice.h>
#include <ipxe/ibft.h>
#include <ipxe/sanboot.h>
#include <int13.h>
FILE_LICENCE ( GPL2_OR_LATER );

View File

@@ -1,9 +1,9 @@
#include <stdint.h>
#include <stdio.h>
#include <gpxe/settings.h>
#include <gpxe/dhcp.h>
#include <gpxe/init.h>
#include <gpxe/sanboot.h>
#include <ipxe/settings.h>
#include <ipxe/dhcp.h>
#include <ipxe/init.h>
#include <ipxe/sanboot.h>
#include <usr/autoboot.h>
struct setting keep_san_setting __setting = {

View File

@@ -27,10 +27,10 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <limits.h>
#include <errno.h>
#include <gpxe/uaccess.h>
#include <gpxe/hidemem.h>
#include <gpxe/memmap.h>
#include <gpxe/umalloc.h>
#include <ipxe/uaccess.h>
#include <ipxe/hidemem.h>
#include <ipxe/memmap.h>
#include <ipxe/umalloc.h>
/** Alignment of external allocated memory */
#define EM_ALIGN ( 4 * 1024 )

View File

@@ -19,7 +19,7 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <stdint.h>
#include <gpxe/pci.h>
#include <ipxe/pci.h>
#include <realmode.h>
/** @file

View File

@@ -38,14 +38,14 @@ FILE_LICENCE ( BSD2 );
#include <assert.h>
#include <realmode.h>
#include <gpxe/srp.h>
#include <gpxe/ib_srp.h>
#include <gpxe/acpi.h>
#include <gpxe/sbft.h>
#include <ipxe/srp.h>
#include <ipxe/ib_srp.h>
#include <ipxe/acpi.h>
#include <ipxe/sbft.h>
#define sbftab __use_data16 ( sbftab )
/** The sBFT used by gPXE */
struct gpxe_sbft __data16 ( sbftab ) = {
/** The sBFT used by iPXE */
struct ipxe_sbft __data16 ( sbftab ) = {
/* Table header */
.table = {
/* ACPI header */
@@ -54,7 +54,7 @@ struct gpxe_sbft __data16 ( sbftab ) = {
.length = sizeof ( sbftab ),
.revision = 1,
.oem_id = "FENSYS",
.oem_table_id = "gPXE",
.oem_table_id = "iPXE",
},
.scsi_offset = offsetof ( typeof ( sbftab ), scsi ),
.srp_offset = offsetof ( typeof ( sbftab ), srp ),

View File

@@ -18,8 +18,8 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <gpxe/uaccess.h>
#include <gpxe/init.h>
#include <ipxe/uaccess.h>
#include <ipxe/init.h>
#include <registers.h>
#include <biosint.h>
#include <pxe.h>

View File

@@ -1,5 +1,5 @@
#include <errno.h>
#include <gpxe/errortab.h>
#include <ipxe/errortab.h>
/*
* This table was generated from the relevant section of errno.h using

View File

@@ -8,9 +8,9 @@
#include <stdio.h>
#include <errno.h>
#include <byteswap.h>
#include <gpxe/uaccess.h>
#include <gpxe/posix_io.h>
#include <gpxe/features.h>
#include <ipxe/uaccess.h>
#include <ipxe/posix_io.h>
#include <ipxe/features.h>
#include <pxe.h>
#include <realmode.h>
@@ -245,7 +245,7 @@ segoff_t __data16 ( pxe_exit_hook ) = { 0, 0 };
* @ret #PXENV_EXIT_FAILURE Command was not executed successfully
* @ret s_PXENV_FILE_API_CHECK::Status PXE status code
* @ret s_PXENV_FILE_API_CHECK::Magic Outbound magic number (0xe9c17b20)
* @ret s_PXENV_FILE_API_CHECK::Provider "gPXE" (0x45585067)
* @ret s_PXENV_FILE_API_CHECK::Provider "iPXE" (0x45585067)
* @ret s_PXENV_FILE_API_CHECK::APIMask API function bitmask
* @ret s_PXENV_FILE_API_CHECK::Flags Reserved
*
@@ -264,7 +264,7 @@ PXENV_EXIT_t pxenv_file_api_check ( struct s_PXENV_FILE_API_CHECK *file_api_chec
file_api_check->Status = PXENV_STATUS_SUCCESS;
file_api_check->Size = sizeof(struct s_PXENV_FILE_API_CHECK);
file_api_check->Magic = 0xe9c17b20;
file_api_check->Provider = 0x45585067; /* "gPXE" */
file_api_check->Provider = 0x45585067; /* "iPXE" */
file_api_check->APIMask = 0x0000007f; /* Functions e0-e6 */
/* Check to see if we have a PXE exit hook */
if ( pxe_exit_hook.segment | pxe_exit_hook.offset )

View File

@@ -18,7 +18,7 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <gpxe/init.h>
#include <ipxe/init.h>
#include "pxe.h"
#include "pxe_call.h"

View File

@@ -28,14 +28,14 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include <gpxe/uaccess.h>
#include <gpxe/dhcp.h>
#include <gpxe/fakedhcp.h>
#include <gpxe/device.h>
#include <gpxe/netdevice.h>
#include <gpxe/isapnp.h>
#include <gpxe/init.h>
#include <gpxe/if_ether.h>
#include <ipxe/uaccess.h>
#include <ipxe/dhcp.h>
#include <ipxe/fakedhcp.h>
#include <ipxe/device.h>
#include <ipxe/netdevice.h>
#include <ipxe/isapnp.h>
#include <ipxe/init.h>
#include <ipxe/if_ether.h>
#include <basemem_packet.h>
#include <biosint.h>
#include "pxe.h"

View File

@@ -28,12 +28,12 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <stdio.h>
#include <errno.h>
#include <byteswap.h>
#include <gpxe/uaccess.h>
#include <gpxe/in.h>
#include <gpxe/tftp.h>
#include <gpxe/xfer.h>
#include <gpxe/open.h>
#include <gpxe/process.h>
#include <ipxe/uaccess.h>
#include <ipxe/in.h>
#include <ipxe/tftp.h>
#include <ipxe/xfer.h>
#include <ipxe/open.h>
#include <ipxe/process.h>
#include <pxe.h>
/** A PXE TFTP connection */

View File

@@ -6,10 +6,10 @@
#include <string.h>
#include <byteswap.h>
#include <gpxe/xfer.h>
#include <gpxe/udp.h>
#include <gpxe/uaccess.h>
#include <gpxe/process.h>
#include <ipxe/xfer.h>
#include <ipxe/udp.h>
#include <ipxe/uaccess.h>
#include <ipxe/process.h>
#include <pxe.h>
/*

View File

@@ -29,14 +29,14 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <string.h>
#include <byteswap.h>
#include <basemem_packet.h>
#include <gpxe/netdevice.h>
#include <gpxe/iobuf.h>
#include <gpxe/device.h>
#include <gpxe/pci.h>
#include <gpxe/if_ether.h>
#include <gpxe/ip.h>
#include <gpxe/arp.h>
#include <gpxe/rarp.h>
#include <ipxe/netdevice.h>
#include <ipxe/iobuf.h>
#include <ipxe/device.h>
#include <ipxe/pci.h>
#include <ipxe/if_ether.h>
#include <ipxe/ip.h>
#include <ipxe/arp.h>
#include <ipxe/rarp.h>
#include "pxe.h"
/**

View File

@@ -18,7 +18,7 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <gpxe/dhcp.h>
#include <ipxe/dhcp.h>
#include <pxeparent.h>
#include <pxe_api.h>
#include <pxe_types.h>

View File

@@ -19,8 +19,8 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <string.h>
#include <gpxe/dhcp.h>
#include <gpxe/netdevice.h>
#include <ipxe/dhcp.h>
#include <ipxe/netdevice.h>
#include <undipreload.h>
#include <pxeparent.h>
#include <realmode.h>

View File

@@ -27,7 +27,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <realmode.h>
#include <comboot.h>
#include <assert.h>
#include <gpxe/uaccess.h>
#include <ipxe/uaccess.h>
static com32sys_t __bss16 ( com32_regs );
#define com32_regs __use_data16 ( com32_regs )

View File

@@ -82,7 +82,7 @@ com32_wrapper:
.data
/* Internal gPXE virtual address space %esp */
/* Internal iPXE virtual address space %esp */
.globl com32_internal_esp
.lcomm com32_internal_esp, 4

View File

@@ -33,21 +33,21 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <pxe_call.h>
#include <setjmp.h>
#include <string.h>
#include <gpxe/posix_io.h>
#include <gpxe/process.h>
#include <gpxe/serial.h>
#include <gpxe/init.h>
#include <gpxe/image.h>
#include <ipxe/posix_io.h>
#include <ipxe/process.h>
#include <ipxe/serial.h>
#include <ipxe/init.h>
#include <ipxe/image.h>
#include <usr/imgmgmt.h>
#include "config/console.h"
#include "config/serial.h"
/** The "SYSLINUX" version string */
static char __data16_array ( syslinux_version, [] ) = "\r\ngPXE " VERSION;
static char __data16_array ( syslinux_version, [] ) = "\r\niPXE " VERSION;
#define syslinux_version __use_data16 ( syslinux_version )
/** The "SYSLINUX" copyright string */
static char __data16_array ( syslinux_copyright, [] ) = " http://etherboot.org";
static char __data16_array ( syslinux_copyright, [] ) = " http://ipxe.org";
#define syslinux_copyright __use_data16 ( syslinux_copyright )
static char __data16_array ( syslinux_configuration_file, [] ) = "";
@@ -335,7 +335,7 @@ static __asmcall void int22 ( struct i386_all_regs *ix86 ) {
ix86->regs.cl = 0; /* minor */
/* SYSLINUX derivative ID */
ix86->regs.dl = BZI_LOADER_TYPE_GPXE;
ix86->regs.dl = BZI_LOADER_TYPE_IPXE;
/* SYSLINUX version and copyright strings */
ix86->segs.es = rm_ds;
@@ -396,7 +396,7 @@ static __asmcall void int22 ( struct i386_all_regs *ix86 ) {
break;
}
/* This relies on the fact that a gPXE POSIX fd will
/* This relies on the fact that a iPXE POSIX fd will
* always fit in 16 bits.
*/
#if (POSIX_FD_MAX > 65535)
@@ -453,9 +453,9 @@ static __asmcall void int22 ( struct i386_all_regs *ix86 ) {
case 0x000A: /* Get Derivative-Specific Information */
/* gPXE has its own derivative ID, so there is no defined
/* iPXE has its own derivative ID, so there is no defined
* output here; just return AL for now */
ix86->regs.al = BZI_LOADER_TYPE_GPXE;
ix86->regs.al = BZI_LOADER_TYPE_IPXE;
ix86->flags &= ~CF;
break;

View File

@@ -1,9 +1,9 @@
#include <errno.h>
#include <comboot.h>
#include <gpxe/in.h>
#include <gpxe/list.h>
#include <gpxe/process.h>
#include <gpxe/resolv.h>
#include <ipxe/in.h>
#include <ipxe/list.h>
#include <ipxe/process.h>
#include <ipxe/resolv.h>
FILE_LICENCE ( GPL2_OR_LATER );

View File

@@ -355,7 +355,7 @@ msg1end:
.word 0xAA55
start_runtime:
/* Install gPXE */
/* Install iPXE */
call install
/* Set up real-mode stack */
@@ -373,7 +373,7 @@ start_runtime:
call prot_call
popl %ecx /* discard */
/* Uninstall gPXE */
/* Uninstall iPXE */
call uninstall
/* Boot next device */

View File

@@ -78,13 +78,13 @@ load_length:
load_failed:
movw $10f, %si
jmp boot_error
10: .asciz "Could not load gPXE\r\n"
10: .asciz "Could not load iPXE\r\n"
.org 510
.byte 0x55, 0xaa
start_image:
/* Install gPXE */
/* Install iPXE */
call install
/* Set up real-mode stack */
@@ -102,7 +102,7 @@ start_image:
call prot_call
popl %ecx /* discard */
/* Uninstall gPXE */
/* Uninstall iPXE */
call uninstall
/* Boot next device */

View File

@@ -178,20 +178,20 @@ setup_code:
* in the prefix, it doesn't matter: we just have to ensure that
* %cs:0000 is where the start of the image *would* be.
*/
ljmp $(SYSSEG-(PREFIXSIZE/16)), $run_gpxe
ljmp $(SYSSEG-(PREFIXSIZE/16)), $run_ipxe
.org PREFIXSIZE
/*
We're now at the beginning of the kernel proper.
*/
run_gpxe:
run_ipxe:
/* Set up stack just below 0x7c00 */
xorw %ax, %ax
movw %ax, %ss
movw $0x7c00, %sp
/* Install gPXE */
/* Install iPXE */
call install
/* Set up real-mode stack */
@@ -209,7 +209,7 @@ run_gpxe:
call prot_call
popl %ecx /* discard */
/* Uninstall gPXE */
/* Uninstall iPXE */
call uninstall
/* Boot next device */

View File

@@ -50,7 +50,7 @@ memlen: .long -512
*****************************************************************************
*/
entry:
/* Install gPXE */
/* Install iPXE */
call install
/* Jump to .text16 segment */
@@ -64,7 +64,7 @@ entry:
call prot_call
popl %ecx /* discard */
/* Uninstall gPXE */
/* Uninstall iPXE */
call uninstall
/* Reboot system */

View File

@@ -441,7 +441,7 @@ print_free_basemem:
*****************************************************************************
*/
finished:
jmp run_gpxe
jmp run_ipxe
/*****************************************************************************
* Subroutine: print segment:offset address
@@ -686,12 +686,12 @@ flags:
.equ undi_device_size, ( . - undi_device )
/*****************************************************************************
* Run gPXE main code
* Run iPXE main code
*****************************************************************************
*/
.section ".prefix"
run_gpxe:
/* Install gPXE */
run_ipxe:
/* Install iPXE */
call install
/* Set up real-mode stack */
@@ -731,7 +731,7 @@ run_gpxe:
call prot_call
popl %ecx /* discard */
/* Uninstall gPXE */
/* Uninstall iPXE */
call uninstall
/* Restore PXE stack */

View File

@@ -130,7 +130,7 @@ pnpheader:
/* Manufacturer string */
mfgstr:
.asciz "http://etherboot.org"
.asciz "http://ipxe.org"
.size mfgstr, . - mfgstr
/* Product string
@@ -477,7 +477,7 @@ no_pmm:
call print_message
popf
jnz out
/* Ctrl-B was pressed: invoke gPXE. The keypress will be
/* Ctrl-B was pressed: invoke iPXE. The keypress will be
* picked up by the initial shell prompt, and we will drop
* into a shell.
*/
@@ -503,7 +503,7 @@ out:
* strings PRODUCT_NAME and PRODUCT_SHORT_NAME in config/general.h.
*
* While nothing in the GPL prevents you from removing all references
* to gPXE or http://etherboot.org, we prefer you not to do so.
* to iPXE or http://ipxe.org, we prefer you not to do so.
*
* If you have an OEM-mandated branding requirement that cannot be
* satisfied simply by defining PRODUCT_NAME and PRODUCT_SHORT_NAME,
@@ -516,7 +516,7 @@ init_message:
.ascii "\n"
.ascii PRODUCT_NAME
.ascii "\n"
.asciz "gPXE (http://etherboot.org) - "
.asciz "iPXE (http://ipxe.org) - "
.size init_message, . - init_message
init_message_pci:
.asciz " PCI"
@@ -913,7 +913,7 @@ int19_entry:
call print_message
popf
jz 1f
/* Leave keypress in buffer and start gPXE. The keypress will
/* Leave keypress in buffer and start iPXE. The keypress will
* cause the usual initial Ctrl-B prompt to be skipped.
*/
pushw %cs
@@ -972,7 +972,7 @@ exec: /* Set %ds = %cs */
movw %ax, %ss
movw $0x7c00, %sp
/* Install gPXE */
/* Install iPXE */
movl image_source, %esi
movl decompress_to, %edi
call alloc_basemem
@@ -993,7 +993,7 @@ exec: /* Set %ds = %cs */
call prot_call
popl %ecx /* discard */
/* Uninstall gPXE */
/* Uninstall iPXE */
call uninstall
/* Restore BIOS stack */

View File

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

View File

@@ -9,7 +9,7 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <gpxe/pcibios.h>
#include <gpxe/pcidirect.h>
#include <ipxe/pcibios.h>
#include <ipxe/pcidirect.h>
#endif /* _BITS_PCI_IO_H */

View File

@@ -1,5 +1,5 @@
#ifndef _GPXE_EFIX86_NAP_H
#define _GPXE_EFIX86_NAP_H
#ifndef _IPXE_EFIX86_NAP_H
#define _IPXE_EFIX86_NAP_H
/** @file
*
@@ -15,4 +15,4 @@ FILE_LICENCE ( GPL2_OR_LATER );
#define NAP_PREFIX_efix86 __efix86_
#endif
#endif /* _GPXE_EFIX86_NAP_H */
#endif /* _IPXE_EFIX86_NAP_H */

View File

@@ -1,5 +1,5 @@
#ifndef _GPXE_PCIBIOS_H
#define _GPXE_PCIBIOS_H
#ifndef _IPXE_PCIBIOS_H
#define _IPXE_PCIBIOS_H
#include <stdint.h>
@@ -132,4 +132,4 @@ PCIAPI_INLINE ( pcbios, pci_write_config_dword ) ( struct pci_device *pci,
return pcibios_write ( pci, PCIBIOS_WRITE_CONFIG_DWORD | where, value);
}
#endif /* _GPXE_PCIBIOS_H */
#endif /* _IPXE_PCIBIOS_H */

View File

@@ -4,7 +4,7 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <stdint.h>
#include <gpxe/io.h>
#include <ipxe/io.h>
#ifdef PCIAPI_DIRECT
#define PCIAPI_PREFIX_direct

View File

@@ -18,12 +18,12 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <gpxe/nap.h>
#include <gpxe/efi/efi.h>
#include <ipxe/nap.h>
#include <ipxe/efi/efi.h>
/** @file
*
* gPXE CPU sleeping API for EFI
* iPXE CPU sleeping API for EFI
*
*/

View File

@@ -19,8 +19,8 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <stdlib.h>
#include <gpxe/init.h>
#include <gpxe/efi/efi.h>
#include <ipxe/init.h>
#include <ipxe/efi/efi.h>
/**
* EFI entry point
@@ -37,7 +37,7 @@ EFI_STATUS EFIAPI _start ( EFI_HANDLE image_handle,
if ( ( efirc = efi_init ( image_handle, systab ) ) != 0 )
return efirc;
/* Initialise gPXE environment */
/* Initialise iPXE environment */
initialise();
startup();

View File

@@ -19,7 +19,7 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <stdlib.h>
#include <gpxe/efi/efi.h>
#include <ipxe/efi/efi.h>
/**
* EFI entry point

View File

@@ -7,6 +7,6 @@
*
*/
#include <gpxe/efi/efix86_nap.h>
#include <ipxe/efi/efix86_nap.h>
#endif /* _BITS_MAP_H */

View File

@@ -16,7 +16,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
*
* This file contains macros that pull various objects into the link
* based on definitions in configuration header files. Ideally it
* should be the only place in gPXE where one might need to use #ifdef
* should be the only place in iPXE where one might need to use #ifdef
* for compile-time options.
*
* In the fairly common case where an object should only be considered
@@ -25,7 +25,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
* <tt>config_<i>subsystem</i>.c</tt>, where @e subsystem is the
* object basename of the main source file for that subsystem. The
* build system will pull in that file if @c subsystem.c is included
* in the final gPXE executable built.
* in the final iPXE executable built.
*/
/*

View File

@@ -21,11 +21,11 @@ FILE_LICENCE ( GPL2_OR_LATER );
#define IMAGE_ELF /* ELF image support */
#define IMAGE_MULTIBOOT /* MultiBoot image support */
#define IMAGE_PXE /* PXE image support */
#define IMAGE_SCRIPT /* gPXE script image support */
#define IMAGE_SCRIPT /* iPXE script image support */
#define IMAGE_BZIMAGE /* Linux bzImage image support */
#define IMAGE_COMBOOT /* SYSLINUX COMBOOT image support */
#define PXE_STACK /* PXE stack in gPXE - required for PXELINUX */
#define PXE_STACK /* PXE stack in iPXE - required for PXELINUX */
#define PXE_MENU /* PXE menu booting */
#define PXE_CMD /* PXE commands */

View File

@@ -14,18 +14,18 @@ FILE_LICENCE ( GPL2_OR_LATER );
/*
* Branding
*
* Vendors may use these strings to add their own branding to gPXE.
* PRODUCT_NAME is displayed prior to any gPXE branding in startup
* Vendors may use these strings to add their own branding to iPXE.
* PRODUCT_NAME is displayed prior to any iPXE branding in startup
* messages, and PRODUCT_SHORT_NAME is used where a brief product
* label is required (e.g. in BIOS boot selection menus).
*
* To minimise end-user confusion, it's probably a good idea to either
* make PRODUCT_SHORT_NAME a substring of PRODUCT_NAME or leave it as
* "gPXE".
* "iPXE".
*
*/
#define PRODUCT_NAME ""
#define PRODUCT_SHORT_NAME "gPXE"
#define PRODUCT_SHORT_NAME "iPXE"
/*
* Timer configuration
@@ -45,7 +45,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
* PXE support
*
*/
//#undef PXE_STACK /* PXE stack in gPXE - you want this! */
//#undef PXE_STACK /* PXE stack in iPXE - you want this! */
//#undef PXE_MENU /* PXE menu booting */
/*
@@ -98,7 +98,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
//#define IMAGE_AOUT /* a.out image support */
//#define IMAGE_WINCE /* WinCE image support */
//#define IMAGE_PXE /* PXE image support */
//#define IMAGE_SCRIPT /* gPXE script image support */
//#define IMAGE_SCRIPT /* iPXE script image support */
//#define IMAGE_BZIMAGE /* Linux bzImage image support */
//#define IMAGE_COMBOOT /* SYSLINUX COMBOOT image support */
//#define IMAGE_EFI /* EFI image support */

View File

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

View File

@@ -20,7 +20,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <string.h>
#include <assert.h>
#include <gpxe/ansiesc.h>
#include <ipxe/ansiesc.h>
/** @file
*

View File

@@ -21,7 +21,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <stdint.h>
#include <string.h>
#include <assert.h>
#include <gpxe/base64.h>
#include <ipxe/base64.h>
/** @file
*

View File

@@ -19,7 +19,7 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <errno.h>
#include <gpxe/bitmap.h>
#include <ipxe/bitmap.h>
/** @file
*

View File

@@ -10,8 +10,8 @@
*/
#include "console.h"
#include <gpxe/init.h>
#include <gpxe/pci.h>
#include <ipxe/init.h>
#include <ipxe/pci.h>
#undef __BIG_ENDIAN
#if 0

View File

@@ -1,7 +1,7 @@
#include "stddef.h"
#include "console.h"
#include <gpxe/process.h>
#include <gpxe/nap.h>
#include <ipxe/process.h>
#include <ipxe/nap.h>
/** @file */

View File

@@ -26,7 +26,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <stdio.h>
#include <string.h>
#include <gpxe/cpio.h>
#include <ipxe/cpio.h>
/**
* Set field within a CPIO header

Some files were not shown because too many files have changed in this diff Show More