Browse Source

Add INIT_LIBRM before INIT_CONSOLE.

tags/v0.9.3
Michael Brown 19 years ago
parent
commit
ef05051f23
1 changed files with 7 additions and 6 deletions
  1. 7
    6
      src/include/init.h

+ 7
- 6
src/include/init.h View File

@@ -33,12 +33,13 @@ struct init_fn {
33 33
 };
34 34
 
35 35
 /* Use double digits to avoid problems with "10" < "9" on alphabetic sort */
36
-#define INIT_CONSOLE	"00"
37
-#define	INIT_CPU	"01"
38
-#define	INIT_TIMERS	"02"
39
-#define	INIT_PCMCIA	"03"
40
-#define	INIT_MEMSIZES	"04"
41
-#define	INIT_HEAP	"05"
36
+#define INIT_LIBRM	"00"
37
+#define INIT_CONSOLE	"01"
38
+#define	INIT_CPU	"02"
39
+#define	INIT_TIMERS	"03"
40
+#define	INIT_PCMCIA	"04"
41
+#define	INIT_MEMSIZES	"05"
42
+#define	INIT_HEAP	"06"
42 43
 
43 44
 /* Macro for creating an initialisation function table entry */
44 45
 #define INIT_FN( init_order, init_func, reset_func, exit_func )		      \

Loading…
Cancel
Save