]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/frv/kernel/vmlinux.lds.S
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
[net-next-2.6.git] / arch / frv / kernel / vmlinux.lds.S
CommitLineData
1da177e4
LT
1/* ld script to make FRV Linux kernel
2 * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz>;
3 */
4OUTPUT_FORMAT("elf32-frv", "elf32-frv", "elf32-frv")
5OUTPUT_ARCH(frv)
6ENTRY(_start)
7
8#include <asm-generic/vmlinux.lds.h>
9#include <asm/processor.h>
10#include <asm/page.h>
11#include <asm/cache.h>
12#include <asm/thread_info.h>
13
14jiffies = jiffies_64 + 4;
15
7038220a 16__page_offset = CONFIG_PAGE_OFFSET; /* start of area covered by struct pages */
1da177e4
LT
17__kernel_image_start = __page_offset; /* address at which kernel image resides */
18
19SECTIONS
20{
21 . = __kernel_image_start;
22
23 /* discardable initialisation code and data */
24 . = ALIGN(PAGE_SIZE); /* Init code and data */
25 __init_begin = .;
26
27 _sinittext = .;
28 .init.text : {
b6a8d95c 29 HEAD_TEXT
1da177e4 30#ifndef CONFIG_DEBUG_INFO
01ba2bdc
SR
31 INIT_TEXT
32 EXIT_TEXT
33 EXIT_DATA
1da177e4
LT
34 *(.exitcall.exit)
35#endif
36 }
37 _einittext = .;
1da177e4 38
9c88b25b 39 INIT_DATA_SECTION(8)
5fb7dc37 40 PERCPU(4096)
1da177e4 41
9c88b25b 42 . = ALIGN(PAGE_SIZE);
1da177e4
LT
43 __init_end = .;
44
1da177e4
LT
45 .trap : {
46 /* trap table management - read entry-table.S before modifying */
47 . = ALIGN(8192);
48 __trap_tables = .;
49 *(.trap.user)
50 *(.trap.kernel)
51 . = ALIGN(4096);
52 *(.trap.break)
53 }
54
1da177e4
LT
55 /* Text and read-only data */
56 . = ALIGN(4);
57 _text = .;
58 _stext = .;
59 .text : {
b6f4e451
DV
60 *(.text..start)
61 *(.text..entry)
62 *(.text..break)
63 *(.text..tlbmiss)
3c835670
DH
64 TEXT_TEXT
65 SCHED_TEXT
66 LOCK_TEXT
1da177e4 67#ifdef CONFIG_DEBUG_INFO
01ba2bdc
SR
68 INIT_TEXT
69 EXIT_TEXT
d897d2b5 70 *(.exitcall.exit)
3c835670 71#endif
1da177e4
LT
72 *(.fixup)
73 *(.gnu.warning)
74 *(.exitcall.exit)
75 } = 0x9090
76
77 _etext = .; /* End of text section */
78
79 RODATA
80
81 .rodata : {
82 *(.trap.vector)
83
84 /* this clause must not be modified - the ordering and adjacency are imperative */
85 __trap_fixup_tables = .;
86 *(.trap.fixup.user .trap.fixup.kernel)
87
88 }
89
9c88b25b 90 EXCEPTION_TABLE(8)
1da177e4
LT
91
92 _sdata = .;
93 .data : { /* Data */
9c88b25b
NE
94 INIT_TASK_DATA(THREAD_SIZE)
95 CACHELINE_ALIGNED_DATA(L1_CACHE_BYTES)
ca967258
SR
96 DATA_DATA
97 *(.data.*)
01ba2bdc 98 EXIT_DATA
1da177e4
LT
99 CONSTRUCTORS
100 }
101
102 _edata = .; /* End of data section */
103
104 /* GP section */
105 . = ALIGN(L1_CACHE_BYTES);
106 _gp = . + 2048;
107 PROVIDE (gp = _gp);
108
109 .sdata : { *(.sdata .sdata.*) }
110
111 /* BSS */
112 . = ALIGN(L1_CACHE_BYTES);
113 __bss_start = .;
114
115 .sbss : { *(.sbss .sbss.*) }
116 .bss : { *(.bss .bss.*) }
1360e070 117 .bss..stack : { *(.bss) }
1da177e4
LT
118
119 __bss_stop = .;
120 _end = . ;
121 . = ALIGN(PAGE_SIZE);
122 __kernel_image_end = .;
123
9c88b25b
NE
124 STABS_DEBUG
125 DWARF_DEBUG
1da177e4
LT
126
127 .comment 0 : { *(.comment) }
405d967d 128
023bf6f1 129 DISCARDS
1da177e4
LT
130}
131
132__kernel_image_size_no_bss = __bss_start - __kernel_image_start;