]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
Add INIT_LIBRM before INIT_CONSOLE.
authorMichael Brown <mcb30@etherboot.org>
Sat, 9 Apr 2005 15:26:38 +0000 (15:26 +0000)
committerMichael Brown <mcb30@etherboot.org>
Sat, 9 Apr 2005 15:26:38 +0000 (15:26 +0000)
src/include/init.h

index 9ec9dedcd71caf90470b9006fdd7f8b3c03e8188..1b020ca781244b5103eb93451515bbbeeb97fa82 100644 (file)
@@ -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 )                      \