diff options
author | Greg Ungerer <gerg@snapgear.com> | 2005-11-06 23:09:50 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 11:00:46 -0500 |
commit | 124df2df0c905b8762cd860a0e3fc9201fba8777 (patch) | |
tree | 9b0b97138b85f44aff7dc4d0c36469341074d45b /arch/m68knommu/kernel | |
parent | 5b3d98bb7f2842551bf3dc76ade09826d70a1cbe (diff) |
[PATCH] m68knommu: align param section and add 5208EVB linker support
Align the param section. It can end up starting on an unalingned
boundary depending on the size of ksymtab_strings. If it is
unaligned things like modules will fail to load with unaligned
access traps.
Add linker scipt support for the M5208EVB board.
Patch originally from Matt Waddel.
Signed-off-by: Greg Ungerer <gerg@uclinux.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/m68knommu/kernel')
-rw-r--r-- | arch/m68knommu/kernel/vmlinux.lds.S | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/m68knommu/kernel/vmlinux.lds.S b/arch/m68knommu/kernel/vmlinux.lds.S index 47f06787190d..0eab92ca4b97 100644 --- a/arch/m68knommu/kernel/vmlinux.lds.S +++ b/arch/m68knommu/kernel/vmlinux.lds.S | |||
@@ -125,6 +125,14 @@ | |||
125 | #endif | 125 | #endif |
126 | 126 | ||
127 | /* | 127 | /* |
128 | * The Freescale 5208EVB board has 32MB of RAM. | ||
129 | */ | ||
130 | #if defined(CONFIG_M5208EVB) | ||
131 | #define RAM_START 0x40020000 | ||
132 | #define RAM_LENGTH 0x01e00000 | ||
133 | #endif | ||
134 | |||
135 | /* | ||
128 | * The senTec COBRA5272 board has nearly the same memory layout as | 136 | * The senTec COBRA5272 board has nearly the same memory layout as |
129 | * the M5272C3. We assume 16MiB ram. | 137 | * the M5272C3. We assume 16MiB ram. |
130 | */ | 138 | */ |
@@ -275,6 +283,7 @@ SECTIONS { | |||
275 | *(__ksymtab_strings) | 283 | *(__ksymtab_strings) |
276 | 284 | ||
277 | /* Built-in module parameters */ | 285 | /* Built-in module parameters */ |
286 | . = ALIGN(4) ; | ||
278 | __start___param = .; | 287 | __start___param = .; |
279 | *(__param) | 288 | *(__param) |
280 | __stop___param = .; | 289 | __stop___param = .; |