diff options
author | Michael Brown | 2009-02-16 01:28:30 +0100 |
---|---|---|
committer | Michael Brown | 2009-02-16 01:30:36 +0100 |
commit | 076154a1c6ca987f84450c0225c190c9cdd77c59 (patch) | |
tree | fbe8e2e7ccbd9de5f048894f9a58687df0c975de /src/include/gpxe/errfile.h | |
parent | [romprefix] Update ROM checksum even if PMM allocation fails (diff) | |
download | ipxe-076154a1c6ca987f84450c0225c190c9cdd77c59.tar.gz ipxe-076154a1c6ca987f84450c0225c190c9cdd77c59.tar.xz ipxe-076154a1c6ca987f84450c0225c190c9cdd77c59.zip |
[image] Allow multiple embedded images
This patch extends the embedded image feature to allow multiple
embedded images instead of just one.
gPXE now always boots the first embedded image on startup instead of
doing the hardcoded DHCP boot (aka autoboot).
Based heavily upon a patch by Stefan Hajnoczi <stefanha@gmail.com>.
Diffstat (limited to 'src/include/gpxe/errfile.h')
-rw-r--r-- | src/include/gpxe/errfile.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/gpxe/errfile.h b/src/include/gpxe/errfile.h index 4809e50c..90c21a7e 100644 --- a/src/include/gpxe/errfile.h +++ b/src/include/gpxe/errfile.h @@ -145,6 +145,7 @@ #define ERRFILE_script ( ERRFILE_IMAGE | 0x00020000 ) #define ERRFILE_segment ( ERRFILE_IMAGE | 0x00030000 ) #define ERRFILE_efi_image ( ERRFILE_IMAGE | 0x00040000 ) +#define ERRFILE_embedded ( ERRFILE_IMAGE | 0x00050000 ) #define ERRFILE_asn1 ( ERRFILE_OTHER | 0x00000000 ) #define ERRFILE_chap ( ERRFILE_OTHER | 0x00010000 ) |