]> git.zerfleddert.de Git - proxmark3-svn/blame_incremental - bootrom/ldscript-flash
Only re-compile version.c as often as necessary
[proxmark3-svn] / bootrom / ldscript-flash
... / ...
CommitLineData
1INCLUDE ../common/ldscript.common\r
2\r
3ENTRY(flashstart)\r
4SECTIONS\r
5{\r
6 . = 0;\r
7 \r
8 .bootphase1 : {\r
9 *(.startup) \r
10 *(.bootphase1)\r
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
18 _version_information_start = ABSOLUTE(.);\r
19 *(.version_information);\r
20 \r
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
25 LONG(_version_information_start)\r
26 } >bootphase1\r
27 \r
28 .bootphase2 : {\r
29 __bootphase2_start__ = .;\r
30 *(.startphase2)\r
31 *(.text)\r
32 *(.glue_7)\r
33 *(.glue_7t)\r
34 *(.rodata)\r
35 *(.data)\r
36 . = ALIGN( 32 / 8 );\r
37 __bootphase2_end__ = .;\r
38 } >ram AT>bootphase2\r
39 \r
40 .bss : {\r
41 __bss_start__ = .; \r
42 *(.bss)\r
43 } >ram\r
44 \r
45 . = ALIGN( 32 / 8 );\r
46 __bss_end__ = .;\r
47}\r
Impressum, Datenschutz