patch-2.1.37 linux/include/asm-m68k/init.h
Next file: linux/include/asm-m68k/namei.h
Previous file: linux/include/asm-m68k/hardirq.h
Back to the patch index
Back to the overall index
- Lines: 23
- Date:
Mon May 12 10:35:43 1997
- Orig file:
v2.1.36/linux/include/asm-m68k/init.h
- Orig date:
Wed Apr 16 14:15:00 1997
diff -u --recursive --new-file v2.1.36/linux/include/asm-m68k/init.h linux/include/asm-m68k/init.h
@@ -1,14 +1,14 @@
#ifndef _M68K_INIT_H
#define _M68K_INIT_H
-/* Throwing the initialization code and data out is not supported yet... */
-
-#define __init
-#define __initdata
-#define __initfunc(__arginit) __arginit
+#define __init __attribute__ ((__section__ (".text.init")))
+#define __initdata __attribute__ ((__section__ (".data.init")))
+#define __initfunc(__arginit) \
+ __arginit __init; \
+ __arginit
/* For assembly routines */
-#define __INIT
-#define __FINIT
-#define __INITDATA
+#define __INIT .section ".text.init",#alloc,#execinstr
+#define __FINIT .previous
+#define __INITDATA .section ".data.init",#alloc,#write
#endif
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov