mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-30 20:23:46 +08:00
4271e82d56
Make bootrom version information pointer a proper symbol (with hacky ld strangeness workaround)
25 lines
417 B
Text
25 lines
417 B
Text
INCLUDE ../common/ldscript.common
|
|
|
|
ENTRY(Vector)
|
|
SECTIONS
|
|
{
|
|
.fpgaimage : {
|
|
*(fpga_bit.data)
|
|
} >fpgaimage
|
|
.start : { *(.startos) } >osimage
|
|
.text : {
|
|
*(.text)
|
|
*(.text.*)
|
|
*(.glue_7)
|
|
*(.glue_7t)
|
|
*(.version_information)
|
|
} >osimage
|
|
.rodata : {
|
|
*(.rodata)
|
|
*(.rodata*)
|
|
} >osimage
|
|
.data : { *(.data) } >ram
|
|
__bss_start__ = .;
|
|
.bss : { *(.bss) } >ram
|
|
__bss_end__ = .;
|
|
}
|