blob: 7ca9ecff652ff346bbdfec69bc03fb3752ef9a8c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/boot/compressed/vmlinux.lds.in
3 *
4 * Copyright (C) 2000 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10OUTPUT_ARCH(arm)
11ENTRY(_start)
12SECTIONS
13{
Catalin Marinasbff595c2009-02-16 11:41:36 +010014 /DISCARD/ : {
15 *(.ARM.exidx*)
16 *(.ARM.extab*)
Russell King5de813b2010-02-25 12:14:40 +000017 /*
18 * Discard any r/w data - this produces a link error if we have any,
19 * which is required for PIC decompression. Local data generates
20 * GOTOFF relocations, which prevents it being relocated independently
21 * of the text/got segments.
22 */
23 *(.data)
Catalin Marinasbff595c2009-02-16 11:41:36 +010024 }
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 . = TEXT_START;
27 _text = .;
28
29 .text : {
30 _start = .;
31 *(.start)
32 *(.text)
Russell Kingc5b8ef62006-04-09 19:08:42 +010033 *(.text.*)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 *(.fixup)
35 *(.gnu.warning)
36 *(.rodata)
37 *(.rodata.*)
38 *(.glue_7)
39 *(.glue_7t)
40 *(.piggydata)
41 . = ALIGN(4);
42 }
43
44 _etext = .;
45
46 _got_start = .;
47 .got : { *(.got) }
48 _got_end = .;
49 .got.plt : { *(.got.plt) }
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 _edata = .;
51
52 . = BSS_START;
53 __bss_start = .;
54 .bss : { *(.bss) }
55 _end = .;
56
57 .stack (NOLOAD) : { *(.stack) }
58
59 .stab 0 : { *(.stab) }
60 .stabstr 0 : { *(.stabstr) }
61 .stab.excl 0 : { *(.stab.excl) }
62 .stab.exclstr 0 : { *(.stab.exclstr) }
63 .stab.index 0 : { *(.stab.index) }
64 .stab.indexstr 0 : { *(.stab.indexstr) }
65 .comment 0 : { *(.comment) }
66}
67