Replace two spaces indents with tabs. Makes it easier to read and
authorpatrick <patrick@openbsd.org>
Sat, 10 Feb 2018 09:53:47 +0000 (09:53 +0000)
committerpatrick <patrick@openbsd.org>
Sat, 10 Feb 2018 09:53:47 +0000 (09:53 +0000)
especially makes it easier to diff against our other linker scripts.

ok jsg@

sys/arch/arm/conf/kern.ldscript

index d844dd6..af516b6 100644 (file)
@@ -1,82 +1,82 @@
-/*     $OpenBSD: kern.ldscript,v 1.2 2018/02/10 07:02:21 patrick Exp $ */
+/*     $OpenBSD: kern.ldscript,v 1.3 2018/02/10 09:53:47 patrick Exp $ */
 /*     $NetBSD: ldscript.evbarm,v 1.2 2003/03/05 23:54:22 thorpej Exp $        */
 
 OUTPUT_ARCH(arm)
 ENTRY(KERNEL_BASE_phys)
 SECTIONS
 {
-  KERNEL_BASE_phys = @KERNEL_BASE_PHYS@;
-  KERNEL_BASE_virt = @KERNEL_BASE_VIRT@;
+       KERNEL_BASE_phys = @KERNEL_BASE_PHYS@;
+       KERNEL_BASE_virt = @KERNEL_BASE_VIRT@;
 
-  /* Kernel start: */
-  .start (KERNEL_BASE_phys) :
-  {
-  *(.start)
-  } =0
+       /* Kernel start: */
+       .start (KERNEL_BASE_phys) :
+       {
+               *(.start)
+       } =0
 
-  /* Read-only sections, merged into text segment: */
-  .text (KERNEL_BASE_virt + SIZEOF(.start)) :
-  AT (LOADADDR(.start) + SIZEOF(.start))
-  {
-    *(.text)
-    *(.text.*)
-    *(.stub)
-    *(.glue_7t) *(.glue_7)
-    *(.rodata) *(.rodata.*)
-  } =0
-  . = ALIGN(4);
-  PROVIDE (__etext = .);
-  PROVIDE (_etext = .);
-  PROVIDE (etext = .);
-  /* Adjust the address for the data segment to start on the next page
-     boundary.  */
-  . = ALIGN(0x8000);
-  .data    :
-  AT (LOADADDR(.text) + (ADDR(.data) - ADDR(.text)))
-  {
-    __data_start = . ;
-    *(.data)
-    *(.data.*)
-  }
-  .sdata     : 
-  AT (LOADADDR(.data) + (ADDR(.sdata) - ADDR(.data)))
-  {
-    *(.sdata) 
-    *(.sdata.*)
-  }
-  _edata = .;
-  PROVIDE (edata = .);
-  __bss_start = .;
-  __bss_start__ = .;
-  .sbss      :
-  {
-    PROVIDE (__sbss_start = .);
-    PROVIDE (___sbss_start = .);
-    *(.dynsbss)
-    *(.sbss)
-    *(.sbss.*)
-    *(.scommon)
-    PROVIDE (__sbss_end = .);
-    PROVIDE (___sbss_end = .);
-  }
-  .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 = .);
-  /DISCARD/ :
-  {
-    *(.ARM.exidx)
-  }
+       /* Read-only sections, merged into text segment: */
+       .text (KERNEL_BASE_virt + SIZEOF(.start)) :
+       AT (LOADADDR(.start) + SIZEOF(.start))
+       {
+               *(.text)
+               *(.text.*)
+               *(.stub)
+               *(.glue_7t) *(.glue_7)
+               *(.rodata) *(.rodata.*)
+       } =0
+       . = ALIGN(4);
+       PROVIDE (__etext = .);
+       PROVIDE (_etext = .);
+       PROVIDE (etext = .);
+       /* Adjust the address for the data segment to start on the next page
+          boundary.  */
+       . = ALIGN(0x8000);
+       .data :
+       AT (LOADADDR(.text) + (ADDR(.data) - ADDR(.text)))
+       {
+               __data_start = . ;
+               *(.data)
+               *(.data.*)
+       }
+       .sdata :
+       AT (LOADADDR(.data) + (ADDR(.sdata) - ADDR(.data)))
+       {
+               *(.sdata)
+               *(.sdata.*)
+       }
+       _edata = .;
+       PROVIDE (edata = .);
+       __bss_start = .;
+       __bss_start__ = .;
+       .sbss :
+       {
+               PROVIDE (__sbss_start = .);
+               PROVIDE (___sbss_start = .);
+               *(.dynsbss)
+               *(.sbss)
+               *(.sbss.*)
+               *(.scommon)
+               PROVIDE (__sbss_end = .);
+               PROVIDE (___sbss_end = .);
+       }
+       .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 = .);
+       /DISCARD/ :
+       {
+               *(.ARM.exidx)
+       }
 }