diff options
| author | Michael Brown | 2005-05-09 20:04:20 +0200 |
|---|---|---|
| committer | Michael Brown | 2005-05-09 20:04:20 +0200 |
| commit | f649a4d0fd8c1ca212a50b215ccd7d3d9c40a445 (patch) | |
| tree | dd8ef6b6a7c20b2fd203a66503aef9da77596a34 /src/include/init.h | |
| parent | Make "struct buffer"s reusable between sessions. (diff) | |
| download | ipxe-f649a4d0fd8c1ca212a50b215ccd7d3d9c40a445.tar.gz ipxe-f649a4d0fd8c1ca212a50b215ccd7d3d9c40a445.tar.xz ipxe-f649a4d0fd8c1ca212a50b215ccd7d3d9c40a445.zip | |
Add INIT_LOADBUF
Diffstat (limited to 'src/include/init.h')
| -rw-r--r-- | src/include/init.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/include/init.h b/src/include/init.h index dda4ef3c3..e28a4349c 100644 --- a/src/include/init.h +++ b/src/include/init.h @@ -1,6 +1,7 @@ #ifndef INIT_H #define INIT_H +#include "stddef.h" /* for NULL */ #include "tables.h" /* @@ -42,9 +43,10 @@ struct init_fn { #define INIT_PCIBIOS 05 #define INIT_MEMSIZES 06 #define INIT_RELOCATE 07 -#define INIT_PCMCIA 08 -#define INIT_HEAP 09 -#define INIT_RPC 10 +#define INIT_LOADBUF 08 +#define INIT_PCMCIA 09 +#define INIT_HEAP 10 +#define INIT_RPC 11 /* Macro for creating an initialisation function table entry */ #define INIT_FN( init_order, init_func, reset_func, exit_func ) \ |
