mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
52 lines
475 B
Text
52 lines
475 B
Text
FORCE_COMMON_ALLOCATION
|
|
|
|
SECTIONS
|
|
{
|
|
.text 0x00000000 : ALIGN(4)
|
|
{
|
|
*(.text)
|
|
*(.stub)
|
|
*(.text*)
|
|
*(.text.*)
|
|
*(.text._*)
|
|
|
|
KEEP (*(.init))
|
|
KEEP (*(.fini))
|
|
}
|
|
|
|
.rodata :
|
|
{
|
|
*(.rodata)
|
|
*(.rodata1)
|
|
*(.rodata.*)
|
|
}
|
|
|
|
.data :
|
|
{
|
|
*(.data)
|
|
*(.data1)
|
|
*(.data.*)
|
|
}
|
|
|
|
|
|
.bss :
|
|
{
|
|
*(.bss)
|
|
*(.bss*)
|
|
*(.sbss)
|
|
*(.sbss*)
|
|
*(COMMON)
|
|
}
|
|
|
|
.ARM.attributes :
|
|
{
|
|
*(.ARM.attributes)
|
|
*(.ARM.attributes.*)
|
|
}
|
|
|
|
/DISCARD/ :
|
|
{
|
|
*(.comment)
|
|
*(.comment.*)
|
|
}
|
|
}
|