The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/conf/ldscript.mips.octeon1

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /* $FreeBSD: releng/11.1/sys/conf/ldscript.mips.octeon1 317145 2017-04-19 15:33:24Z emaste $ */
    2 
    3 ENTRY(_start)
    4 
    5 PHDRS {
    6         text PT_LOAD FLAGS(0x7);
    7 }
    8 
    9 SECTIONS {
   10         . = KERNLOADADDR + SIZEOF_HEADERS;
   11 
   12         .text : {
   13                 *(.text)
   14                 *(.dynamic)
   15                 etext = .;
   16                 _etext = .;
   17                 . = ALIGN(0x2000);
   18         } : text
   19 
   20         . = ALIGN(0x2000);
   21         .rodata : {
   22                 _fdata = .;
   23                 *(.rodata)
   24                 . = ALIGN(32);
   25         }
   26         
   27         .data : {
   28                 _rwdata = .;
   29                 *(.data)
   30                 . = ALIGN(32);
   31         }
   32 
   33         _gp = (. + 0x8000);
   34 
   35         .sdata : {
   36                 _small_start = .;
   37                 *(.sdata)
   38                 . = ALIGN(32);
   39                 edata = .;
   40                 _edata = .;
   41         } : text
   42 
   43         .sbss : {
   44                 __bss_start = .;
   45                 _fbss = .;
   46                 *(.sbss) *(.scommon)
   47                 _small_end = .;
   48                 . = ALIGN(32);
   49         }
   50 
   51         .bss : {
   52                 *(.bss)
   53                 *(COMMON)
   54                 . = ALIGN(32);
   55                 _end = .;
   56                 end = .;
   57         }
   58 
   59 }

Cache object: 20e920d1e0e5fa0b5c96300f3f51187d


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.