2015-01-01 14:15:26 +00:00
|
|
|
# Copyright (C) 2014-2015 Free Software Foundation, Inc.
|
2014-08-20 09:34:58 +00:00
|
|
|
#
|
|
|
|
# Copying and distribution of this file, with or without modification,
|
|
|
|
# are permitted in any medium without royalty provided the copyright
|
|
|
|
# notice and this notice are preserved.
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
DATA_ADDR=0x40000000
|
|
|
|
test "$LD_FLAG" = "N" && DATA_ADDR=.
|
2014-08-20 09:34:58 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
cat <<EOF
|
2015-01-01 14:15:26 +00:00
|
|
|
/* Copyright (C) 2014-2015 Free Software Foundation, Inc.
|
2014-08-20 09:34:58 +00:00
|
|
|
|
|
|
|
Copying and distribution of this script, with or without modification,
|
|
|
|
are permitted in any medium without royalty provided the copyright
|
|
|
|
notice and this notice are preserved. */
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
|
|
|
OUTPUT_ARCH(${ARCH})
|
2009-09-09 11:59:14 +00:00
|
|
|
${RELOCATING+ENTRY("\$START\$")}
|
1999-05-03 07:29:11 +00:00
|
|
|
${RELOCATING+${LIB_SEARCH_DIRS}}
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
.text 0x1000 ${RELOCATING++${TEXT_START_ADDR}}:
|
|
|
|
{
|
|
|
|
${RELOCATING+__text_start = .};
|
|
|
|
CREATE_OBJECT_SYMBOLS
|
|
|
|
*(.PARISC.stubs)
|
|
|
|
*(.text)
|
|
|
|
${RELOCATING+etext = .};
|
|
|
|
${RELOCATING+_etext = .};
|
|
|
|
}
|
|
|
|
${RELOCATING+. = ${DATA_ADDR};}
|
|
|
|
.data :
|
|
|
|
{
|
|
|
|
${RELOCATING+ . = . + 0x1000 };
|
|
|
|
${RELOCATING+__data_start = .};
|
|
|
|
*(.data)
|
|
|
|
${CONSTRUCTING+CONSTRUCTORS}
|
|
|
|
${RELOCATING+edata = .};
|
|
|
|
${RELOCATING+_edata = .};
|
|
|
|
}
|
|
|
|
${RELOCATING+. = ${DATA_ADDR} + SIZEOF(.data);}
|
|
|
|
.bss :
|
|
|
|
{
|
|
|
|
*(.bss)
|
|
|
|
*(COMMON)
|
|
|
|
${RELOCATING+end = . };
|
|
|
|
${RELOCATING+_end = . };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
EOF
|