Procházet zdrojové kódy

Add INIT_LIBRM before INIT_CONSOLE.

tags/v0.9.3
Michael Brown před 19 roky
rodič
revize
ef05051f23
1 změnil soubory, kde provedl 7 přidání a 6 odebrání
  1. 7
    6
      src/include/init.h

+ 7
- 6
src/include/init.h Zobrazit soubor

@@ -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 )		      \

Načítá se…
Zrušit
Uložit