# These are substituted in as variables in order to get '}' in a shell
|
# These are substituted in as variables in order to get '}' in a shell
|
# conditional expansion.
|
# conditional expansion.
|
INIT='.init : { *(.init) }'
|
INIT='.init : { *(.init) }'
|
FINI='.fini : { *(.fini) }'
|
FINI='.fini : { *(.fini) }'
|
cat <
|
cat <
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
OUTPUT_ARCH(${ARCH})
|
OUTPUT_ARCH(${ARCH})
|
ENTRY(__start)
|
ENTRY(__start)
|
${RELOCATING+${LIB_SEARCH_DIRS}}
|
${RELOCATING+${LIB_SEARCH_DIRS}}
|
|
|
SECTIONS
|
SECTIONS
|
{
|
{
|
.text ${RELOCATING+ (0x20007 + SIZEOF_HEADERS) &~ 7} :
|
.text ${RELOCATING+ (0x20007 + SIZEOF_HEADERS) &~ 7} :
|
{
|
{
|
${RELOCATING+ __.text.start = .};
|
${RELOCATING+ __.text.start = .};
|
${RELOCATING+ __.init.start = .};
|
${RELOCATING+ __.init.start = .};
|
${RELOCATING+ *(.init)}
|
${RELOCATING+ *(.init)}
|
${RELOCATING+ __.init.end = .};
|
${RELOCATING+ __.init.end = .};
|
*(.text)
|
*(.text)
|
${RELOCATING+ __.tdesc_start = .};
|
${RELOCATING+ __.tdesc_start = .};
|
${RELOCATING+ *(.tdesc)}
|
${RELOCATING+ *(.tdesc)}
|
${RELOCATING+ __.text_end = .} ;
|
${RELOCATING+ __.text_end = .} ;
|
${RELOCATING+ __.initp.start = .};
|
${RELOCATING+ __.initp.start = .};
|
${RELOCATING+ __.initp.end = .};
|
${RELOCATING+ __.initp.end = .};
|
${RELOCATING+ __.fini_start = .};
|
${RELOCATING+ __.fini_start = .};
|
${RELOCATING+ *(.fini) }
|
${RELOCATING+ *(.fini) }
|
${RELOCATING+ __.fini_end = .};
|
${RELOCATING+ __.fini_end = .};
|
${RELOCATING+_etext = .};
|
${RELOCATING+_etext = .};
|
}
|
}
|
.data ${RELOCATING+ NEXT (0x400000) + ((SIZEOF(.text) + ADDR(.text)) % 0x2000)} :
|
.data ${RELOCATING+ NEXT (0x400000) + ((SIZEOF(.text) + ADDR(.text)) % 0x2000)} :
|
{
|
{
|
*(.data)
|
*(.data)
|
${RELOCATING+_edata = .};
|
${RELOCATING+_edata = .};
|
}
|
}
|
.bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} :
|
.bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} :
|
{
|
{
|
*(.bss)
|
*(.bss)
|
*(COMMON)
|
*(COMMON)
|
${RELOCATING+ _end = .};
|
${RELOCATING+ _end = .};
|
${RELOCATING+ __end = .};
|
${RELOCATING+ __end = .};
|
}
|
}
|
${RELOCATING- ${INIT}}
|
${RELOCATING- ${INIT}}
|
${RELOCATING- ${FINI}}
|
${RELOCATING- ${FINI}}
|
.comment 0 ${RELOCATING+(NOLOAD)} :
|
.comment 0 ${RELOCATING+(NOLOAD)} :
|
{
|
{
|
*(.comment)
|
*(.comment)
|
}
|
}
|
}
|
}
|
EOF
|
EOF
|
|
|