]> git.zerfleddert.de Git - proxmark3-svn/blame - bootrom/ldscript-flash
New bootrom
[proxmark3-svn] / bootrom / ldscript-flash
CommitLineData
2bfed17d 1INCLUDE ../common/ldscript.common\r
8652988d 2\r
2bfed17d 3ENTRY(flashstart)\r
6658905f 4SECTIONS\r
5{\r
8652988d 6 . = 0;\r
7 \r
4271e82d 8 .bootphase1 : {\r
8652988d 9 *(.startup) \r
10 *(.bootphase1)\r
8a6aec16 11 \r
12 /* It seems to be impossible to flush align a section at the\r
13 end of a memory segment. Instead, we'll put the version_information\r
14 wherever the linker wants it, and then put a pointer to the start\r
15 of the version information at the end of the section.\r
16 -- Henryk Plötz <henryk@ploetzli.ch> 2009-08-28 */\r
17 \r
4271e82d 18 _version_information_start = ABSOLUTE(.);\r
8a6aec16 19 *(.version_information);\r
20 \r
4271e82d 21 /* Why doesn't this work even though _bootphase1_version_pointer = 0x1001fc?
22 . = _bootphase1_version_pointer - ORIGIN(bootphase1); */\r
23 /* This works, apparently it fools the linker into accepting an absolute address */\r
24 . = _bootphase1_version_pointer - ORIGIN(bootphase1) + ORIGIN(bootphase1);\r
8a6aec16 25 LONG(_version_information_start)\r
8652988d 26 } >bootphase1\r
27 \r
e3ae0257 28 __bootphase2_src_start__ = ORIGIN(bootphase2);\r
4271e82d 29 .bootphase2 : {\r
8652988d 30 __bootphase2_start__ = .;\r
31 *(.startphase2)\r
32 *(.text)\r
33 *(.glue_7)\r
fb6e5aa8 34 *(.glue_7t)\r
8652988d 35 *(.rodata)\r
36 *(.data)\r
37 . = ALIGN( 32 / 8 );\r
38 __bootphase2_end__ = .;\r
39 } >ram AT>bootphase2\r
40 \r
41 .bss : {\r
42 __bss_start__ = .; \r
43 *(.bss)\r
44 } >ram\r
45 \r
46 . = ALIGN( 32 / 8 );\r
6658905f 47 __bss_end__ = .;\r
8fcbf652 48 \r
49 .commonarea (NOLOAD) : {\r
50 *(.commonarea)\r
51 } >commonarea\r
6658905f 52}\r
Impressum, Datenschutz