diff options
Diffstat (limited to 'arch/m68k/kernel/vmlinux-std.lds')
-rw-r--r-- | arch/m68k/kernel/vmlinux-std.lds | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/m68k/kernel/vmlinux-std.lds b/arch/m68k/kernel/vmlinux-std.lds index 99b0784c0552..f846d4e3e5e1 100644 --- a/arch/m68k/kernel/vmlinux-std.lds +++ b/arch/m68k/kernel/vmlinux-std.lds | |||
@@ -34,10 +34,10 @@ SECTIONS | |||
34 | CONSTRUCTORS | 34 | CONSTRUCTORS |
35 | } | 35 | } |
36 | 36 | ||
37 | .bss : { *(.bss) } /* BSS */ | ||
38 | |||
39 | . = ALIGN(16); | 37 | . = ALIGN(16); |
40 | .data.cacheline_aligned : { *(.data.cacheline_aligned) } :data | 38 | .data.cacheline_aligned : { *(.data.cacheline_aligned) } |
39 | |||
40 | .bss : { *(.bss) } /* BSS */ | ||
41 | 41 | ||
42 | _edata = .; /* End of data section */ | 42 | _edata = .; /* End of data section */ |
43 | 43 | ||
@@ -48,7 +48,7 @@ SECTIONS | |||
48 | _sinittext = .; | 48 | _sinittext = .; |
49 | INIT_TEXT | 49 | INIT_TEXT |
50 | _einittext = .; | 50 | _einittext = .; |
51 | } | 51 | } :data |
52 | .init.data : { INIT_DATA } | 52 | .init.data : { INIT_DATA } |
53 | . = ALIGN(16); | 53 | . = ALIGN(16); |
54 | __setup_start = .; | 54 | __setup_start = .; |
@@ -74,6 +74,7 @@ SECTIONS | |||
74 | .init.ramfs : { *(.init.ramfs) } | 74 | .init.ramfs : { *(.init.ramfs) } |
75 | __initramfs_end = .; | 75 | __initramfs_end = .; |
76 | #endif | 76 | #endif |
77 | NOTES | ||
77 | . = ALIGN(8192); | 78 | . = ALIGN(8192); |
78 | __init_end = .; | 79 | __init_end = .; |
79 | 80 | ||