Add copyright notice to linker script files.
[deliverable/binutils-gdb.git] / ld / scripttempl / tic30coff.sc
index df2d4f737cd351ae5f69b45a66cad64cafd9e84d..a0756c734892557d238ae49166513b6acb8df1f1 100644 (file)
@@ -1,4 +1,16 @@
+# 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.
+
 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("${OUTPUT_ARCH}")
 
@@ -12,47 +24,46 @@ MEMORY
 
 SECTIONS                               
 {                                      
-.vectors 0x00000000 :
-{
-       *(vectors)
-}
-
-.text : 
-{
-       *(.text)
-} > rom
+       .vectors 0x00000000 :
+       {
+               *(vectors)
+       }
 
-.const :
-{
-       *(.const)
-       __etext = . ;
-} > rom
+       .text : 
+       {
+               *(.text)
+       } > rom
 
-.mdata : AT( ADDR(.const) + SIZEOF(.const) )
-{
-       __data = . ;
-       *(.data);
-       __edata = . ;
-} > ram
+       .const :
+       {
+               *(.const)
+               __etext = . ;
+       } > rom
 
-.bss :
-{
-       __bss = . ;
-       *(.bss);
-       *(COMMON);
-       __ebss = . ;
-} > ram
+       .mdata : AT( ADDR(.const) + SIZEOF(.const) )
+       {
+               __data = . ;
+               *(.data);
+               __edata = . ;
+       } > ram
 
-.ram0 :
-{
-       *(ram0)
-} > ramblk0
+       .bss :
+       {
+               __bss = . ;
+               *(.bss);
+               *(COMMON);
+               __ebss = . ;
+       } > ram
 
-.ram1 :
-{
-       *(ram1)
-} > ramblk1
+       .ram0 :
+       {
+               *(ram0)
+       } > ramblk0
 
+       .ram1 :
+       {
+               *(ram1)
+       } > ramblk1
 }
 
 EOF
This page took 0.028013 seconds and 4 git commands to generate.