Update year range in copyright notice of binutils files
[deliverable/binutils-gdb.git] / ld / scripttempl / tic54xcoff.sc
index d84f928bb1dacf5f0c66ff71c82e26a5cf74b5e4..af8928f6383f34f403b2a7a1f5597ce29cc19dc5 100644 (file)
@@ -1,29 +1,42 @@
-# default linker script for c54x, TI COFF(1).
-# patterned after description in TI Aseembler Tools PDF, SPRU102C, 7-53
+# Default linker script for c54x, TI COFF(1).
+# patterned after description in TI Assembler Tools PDF, SPRU102C, 7-53
+#
+# Copyright (C) 2014-2019 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.
+
 test -z "$ENTRY" && ENTRY=_c_int00
 
 cat <<EOF
+/* Copyright (C) 2014-2019 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("${OUTPUT_ARCH}")
 
 MEMORY
 {
-       PAGE 0 : prog (RXI) : ORIGIN = 0x000080, LENGTH = 0xFF00
-       PAGE 1 : data (W) : ORIGIN = 0x000080, LENGTH = 0xFF80
+       /*PAGE 0 : */ prog (RXI) : ORIGIN = 0x00000080, LENGTH = 0xFF00
+       /*PAGE 1 : */ data (W) : ORIGIN = 0x01000080, LENGTH = 0xFF80
 }
 
-ENTRY(${ENTRY})
+${RELOCATING+ENTRY (${ENTRY})}
 
-SECTIONS                               
-{                                      
-       .text : 
+SECTIONS
+{
+       .text :
        {
                ___text__ = .;
                *(.text)
                etext = .;
                ___etext__ = .;
        } > prog
-       .data : 
+       .data :
        {
                ___data__ = .;
                __data = .;
@@ -33,11 +46,11 @@ SECTIONS
                ___edata__ = .;
        } > prog
        /* all other initialized sections should be allocated here */
-       .cinit : 
+       .cinit :
        {
                *(.cinit)
        } > prog
-       .bss : 
+       .bss :
        {
                ___bss__ = .;
                __bss = .;
This page took 0.023789 seconds and 4 git commands to generate.