diff options
author | Michael Brown <mcb30@etherboot.org> | 2005-04-09 15:26:38 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2005-04-09 15:26:38 +0000 |
commit | ef05051f2328aec47e7230ade0437863c43ad4cf (patch) | |
tree | 71835e6f8f37137ce81263ad1b6ebb0232bb6bbc /src/include | |
parent | 48feb91a400d5939e2268b9e818b64a5568baad6 (diff) | |
download | ipxe-ef05051f2328aec47e7230ade0437863c43ad4cf.tar.gz |
Add INIT_LIBRM before INIT_CONSOLE.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/init.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/include/init.h b/src/include/init.h index 9ec9dedcd..1b020ca78 100644 --- a/src/include/init.h +++ b/src/include/init.h @@ -33,12 +33,13 @@ struct init_fn { }; /* Use double digits to avoid problems with "10" < "9" on alphabetic sort */ -#define INIT_CONSOLE "00" -#define INIT_CPU "01" -#define INIT_TIMERS "02" -#define INIT_PCMCIA "03" -#define INIT_MEMSIZES "04" -#define INIT_HEAP "05" +#define INIT_LIBRM "00" +#define INIT_CONSOLE "01" +#define INIT_CPU "02" +#define INIT_TIMERS "03" +#define INIT_PCMCIA "04" +#define INIT_MEMSIZES "05" +#define INIT_HEAP "06" /* Macro for creating an initialisation function table entry */ #define INIT_FN( init_order, init_func, reset_func, exit_func ) \ |