upload android base code part8

This commit is contained in:
August 2018-08-08 20:10:12 +08:00
parent 841ae54672
commit 5425409085
57075 changed files with 9846578 additions and 0 deletions

View file

@ -0,0 +1,51 @@
# Copyright (C) 2014 Free Software Foundation, Inc.
#
# 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.
DATA_ADDR=0x40000000
test "$LD_FLAG" = "N" && DATA_ADDR=.
cat <<EOF
/* Copyright (C) 2014 Free Software Foundation, Inc.
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. */
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
OUTPUT_ARCH(${ARCH})
${RELOCATING+ENTRY("\$START\$")}
${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