mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-11 09:59:45 +08:00
8a6aec16d8
Use perl to create the version information (thereby re-creating the perl dependency and adding an svn dependency) but fall back in case of missing perl or svn
25 lines
416 B
Text
25 lines
416 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__ = .;
|
|
}
|