Update year range in copyright notice of binutils files
[deliverable/binutils-gdb.git] / ld / scripttempl / z8000.sc
index 646c88080a9af035326a8d4d26b8783753c5af6d..aabb0459049207cfec1f56eb55ba482bc9a96841 100644 (file)
@@ -1,18 +1,30 @@
+# Copyright (C) 2014-2018 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.
+
 cat <<EOF
+/* Copyright (C) 2014-2018 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}")
-ENTRY(_start)
+${RELOCATING+ENTRY (_start)}
 
-SECTIONS                               
-{                                      
+SECTIONS
+{
 .text ${BIG+ ${RELOCATING+ 0x0000000}} :
-       { 
-         *(.text)                              
+       {
+         *(.text)
          *(.strings)
          *(.rdata)
        }
 
-.ctors ${BIG+ ${RELOCATING+ 0x2000000}}  : 
+.ctors ${BIG+ ${RELOCATING+ 0x2000000}}  :
        {
          ${CONSTRUCTING+ ___ctors = . ;  }
          *(.ctors);
@@ -20,14 +32,14 @@ SECTIONS
          ___dtors = . ;
          *(.dtors);
          ${CONSTRUCTING+ ___dtors_end = . ; }
-       } 
+       }
 
 .data ${BIG+ ${RELOCATING+ 0x3000000}} :
        {
           *(.data)
        }
 
-.bss ${BIG+ ${RELOCATING+ 0x4000000}} : 
+.bss ${BIG+ ${RELOCATING+ 0x4000000}} :
        {
          ${RELOCATING+ __start_bss = . ; }
          *(.bss);
@@ -40,9 +52,9 @@ SECTIONS
          ${RELOCATING+ __start_heap = . ; }
          ${RELOCATING+ . = . + 20k  ; }
          ${RELOCATING+ __end_heap = . ; }
-       } 
+       }
 
-.stack ${RELOCATING+ 0xf000 }  : 
+.stack ${RELOCATING+ 0xf000 }  :
        {
          ${RELOCATING+ _stack = . ; }
          *(.stack)
This page took 0.028255 seconds and 4 git commands to generate.