Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/cats/conf Remove unused script



details:   https://anonhg.NetBSD.org/src/rev/023f64be25f3
branches:  trunk
changeset: 825313:023f64be25f3
user:      skrll <skrll%NetBSD.org@localhost>
date:      Sat Jul 08 15:14:49 2017 +0000

description:
Remove unused script

diffstat:

 sys/arch/cats/conf/kern.ldscript |  47 ----------------------------------------
 1 files changed, 0 insertions(+), 47 deletions(-)

diffs (51 lines):

diff -r c9f14cb0cd09 -r 023f64be25f3 sys/arch/cats/conf/kern.ldscript
--- a/sys/arch/cats/conf/kern.ldscript  Sat Jul 08 14:35:33 2017 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,47 +0,0 @@
-/*     $NetBSD: kern.ldscript,v 1.5 2015/08/23 08:57:25 uebayasi Exp $ */
-
-SECTIONS
-{
-  . = 0xf0000020;      /* 0x20 == sizeof(a.out header) */
-
-  /* Read-only sections, merged into text segment: */
-  .text :
-  {
-    *(.text)
-    *(.text.*)
-    *(.stub)
-    *(.glue_7t) *(.glue_7)
-    *(.rodata) *(.rodata.*)
-  } =0
-  PROVIDE (__etext = .);
-  PROVIDE (_etext = .);
-  PROVIDE (etext = .);
-  . = ALIGN(0x1000);
-  .data :
-  {
-    __data_start = . ;
-    *(.data)
-    *(.data.*)
-    *(.sdata)
-    *(.sdata.*)
-  }
-  _edata = .;
-  PROVIDE (edata = .);
-  __bss_start = .;
-  __bss_start__ = .;
-  .bss       :
-  {
-    *(.dynbss)
-    *(.bss)
-    *(.bss.*)
-    *(COMMON)
-    /* Align here to ensure that the .bss section occupies space up to
-       _end.  Align after .bss to ensure correct alignment even if the
-       .bss section disappears because there are no input sections.  */
-    . = ALIGN(32 / 8);
-  }
-  . = ALIGN(32 / 8);
-  _end = .;
-  _bss_end__ = . ; __bss_end__ = . ; __end__ = . ;
-  PROVIDE (end = .);
-}



Home | Main Index | Thread Index | Old Index