Changeset 18337
- Timestamp:
- 2009-11-07T14:36:32+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/target/linux/x86/patches-2.6.31/300-block2mtd_init.patch
r18336 r18337 1 Index: linux-2.6.31.5/arch/x86/kernel/vmlinux.lds.S 2 =================================================================== 3 --- linux-2.6.31.5.orig/arch/x86/kernel/vmlinux.lds.S 2009-10-23 00:57:56.000000000 +0200 4 +++ linux-2.6.31.5/arch/x86/kernel/vmlinux.lds.S 2009-11-07 14:31:54.000000000 +0100 5 @@ -244,6 +244,12 @@ 6 __initcall_end = .; 7 } 8 9 + .root_initcall.init : AT(ADDR(.root_initcall.init) - LOAD_OFFSET) { 10 + __root_initcall_start = .; 11 + INITCALLS_ROOT 12 + __root_initcall_end = .; 13 + } 14 + 15 .con_initcall.init : AT(ADDR(.con_initcall.init) - LOAD_OFFSET) { 16 __con_initcall_start = .; 17 *(.con_initcall.init) 1 18 Index: linux-2.6.31.5/drivers/mtd/devices/block2mtd.c 2 19 =================================================================== 3 --- linux-2.6.31.5.orig/drivers/mtd/devices/block2mtd.c 2009-11-07 1 3:52:05.000000000 +01004 +++ linux-2.6.31.5/drivers/mtd/devices/block2mtd.c 2009-11-07 1 3:52:17.000000000 +010020 --- linux-2.6.31.5.orig/drivers/mtd/devices/block2mtd.c 2009-11-07 14:30:57.000000000 +0100 21 +++ linux-2.6.31.5/drivers/mtd/devices/block2mtd.c 2009-11-07 14:31:19.000000000 +0100 5 22 @@ -18,10 +18,18 @@ 6 23 #include <linux/buffer_head.h> … … 70 87 Index: linux-2.6.31.5/include/asm-generic/vmlinux.lds.h 71 88 =================================================================== 72 --- linux-2.6.31.5.orig/include/asm-generic/vmlinux.lds.h 2009-11-07 1 3:52:04.000000000 +010073 +++ linux-2.6.31.5/include/asm-generic/vmlinux.lds.h 2009-11-07 1 3:52:17.000000000 +010089 --- linux-2.6.31.5.orig/include/asm-generic/vmlinux.lds.h 2009-11-07 14:30:57.000000000 +0100 90 +++ linux-2.6.31.5/include/asm-generic/vmlinux.lds.h 2009-11-07 14:31:19.000000000 +0100 74 91 @@ -622,12 +622,14 @@ 75 92 *(.initcall4s.init) \ … … 91 108 =================================================================== 92 109 --- linux-2.6.31.5.orig/init/do_mounts.c 2009-10-23 00:57:56.000000000 +0200 93 +++ linux-2.6.31.5/init/do_mounts.c 2009-11-07 1 3:52:17.000000000 +0100110 +++ linux-2.6.31.5/init/do_mounts.c 2009-11-07 14:31:19.000000000 +0100 94 111 @@ -176,16 +176,8 @@ 95 112 return 1; … … 135 152 Index: linux-2.6.31.5/init/main.c 136 153 =================================================================== 137 --- linux-2.6.31.5.orig/init/main.c 2009-11-07 1 3:52:16.000000000 +0100138 +++ linux-2.6.31.5/init/main.c 2009-11-07 14: 00:29.000000000 +0100154 --- linux-2.6.31.5.orig/init/main.c 2009-11-07 14:30:59.000000000 +0100 155 +++ linux-2.6.31.5/init/main.c 2009-11-07 14:31:19.000000000 +0100 139 156 @@ -79,6 +79,7 @@ 140 157 #ifdef CONFIG_X86_LOCAL_APIC
Note: See TracChangeset
for help on using the changeset viewer.