Bladeren bron

Add INIT_LIBRM before INIT_CONSOLE.

tags/v0.9.3
Michael Brown 19 jaren geleden
bovenliggende
commit
ef05051f23
1 gewijzigde bestanden met toevoegingen van 7 en 6 verwijderingen
  1. 7
    6
      src/include/init.h

+ 7
- 6
src/include/init.h Bestand weergeven

33
 };
33
 };
34
 
34
 
35
 /* Use double digits to avoid problems with "10" < "9" on alphabetic sort */
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
 /* Macro for creating an initialisation function table entry */
44
 /* Macro for creating an initialisation function table entry */
44
 #define INIT_FN( init_order, init_func, reset_func, exit_func )		      \
45
 #define INIT_FN( init_order, init_func, reset_func, exit_func )		      \

Laden…
Annuleren
Opslaan