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/i386/conf/kernel.script

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 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
    2 OUTPUT_ARCH(i386)
    3 ENTRY(btext)
    4 SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/obj/elf/home/src/tmp/usr/i386-unknown-freebsdelf/lib);
    5 SECTIONS
    6 {
    7   /* Read-only sections, merged into text segment: */
    8   . = 0xc0100000 + SIZEOF_HEADERS;
    9   .interp     : { *(.interp)    }
   10   .hash          : { *(.hash)           }
   11   .dynsym        : { *(.dynsym)         }
   12   .dynstr        : { *(.dynstr)         }
   13   .gnu.version   : { *(.gnu.version)    }
   14   .gnu.version_d   : { *(.gnu.version_d)        }
   15   .gnu.version_r   : { *(.gnu.version_r)        }
   16   .rel.text      :
   17     { *(.rel.text) *(.rel.gnu.linkonce.t*) }
   18   .rela.text     :
   19     { *(.rela.text) *(.rela.gnu.linkonce.t*) }
   20   .rel.data      :
   21     { *(.rel.data) *(.rel.gnu.linkonce.d*) }
   22   .rela.data     :
   23     { *(.rela.data) *(.rela.gnu.linkonce.d*) }
   24   .rel.rodata    :
   25     { *(.rel.rodata) *(.rel.gnu.linkonce.r*) }
   26   .rela.rodata   :
   27     { *(.rela.rodata) *(.rela.gnu.linkonce.r*) }
   28   .rel.got       : { *(.rel.got)                }
   29   .rela.got      : { *(.rela.got)               }
   30   .rel.ctors     : { *(.rel.ctors)      }
   31   .rela.ctors    : { *(.rela.ctors)     }
   32   .rel.dtors     : { *(.rel.dtors)      }
   33   .rela.dtors    : { *(.rela.dtors)     }
   34   .rel.init      : { *(.rel.init)       }
   35   .rela.init     : { *(.rela.init)      }
   36   .rel.fini      : { *(.rel.fini)       }
   37   .rela.fini     : { *(.rela.fini)      }
   38   .rel.bss       : { *(.rel.bss)                }
   39   .rela.bss      : { *(.rela.bss)               }
   40   .rel.plt       : { *(.rel.plt)                }
   41   .rela.plt      : { *(.rela.plt)               }
   42   .init          : { *(.init)   } =0x9090
   43   .plt      : { *(.plt) }
   44   .text      :
   45   {
   46     *(.text)
   47     *(.stub)
   48     /* .gnu.warning sections are handled specially by elf32.em.  */
   49     *(.gnu.warning)
   50     *(.gnu.linkonce.t*)
   51   } =0x9090
   52   _etext = .;
   53   PROVIDE (etext = .);
   54   .fini      : { *(.fini)    } =0x9090
   55   .rodata    : { *(.rodata) *(.gnu.linkonce.r*) }
   56   .rodata1   : { *(.rodata1) }
   57   /* Adjust the address for the data segment.  We want to adjust up to
   58      the same address within the page on the next page up.  */
   59   . = ALIGN(0x1000) + (. & (0x1000 - 1)) ; 
   60   .data    :
   61   {
   62     *(.data)
   63     *(.gnu.linkonce.d*)
   64     CONSTRUCTORS
   65   }
   66   .data1   : { *(.data1) }
   67   .ctors         :
   68   {
   69     *(.ctors)
   70   }
   71   .dtors         :
   72   {
   73     *(.dtors)
   74   }
   75   .got           : { *(.got.plt) *(.got) }
   76   .dynamic       : { *(.dynamic) }
   77   /* We want the small data sections together, so single-instruction offsets
   78      can access them all, and initialized data all before uninitialized, so
   79      we can shorten the on-disk segment size.  */
   80   .sdata     : { *(.sdata) }
   81   _edata  =  .;
   82   PROVIDE (edata = .);
   83   __bss_start = .;
   84   .sbss      : { *(.sbss) *(.scommon) }
   85   .bss       :
   86   {
   87    *(.dynbss)
   88    *(.bss)
   89    *(COMMON)
   90   }
   91   . = ALIGN(32 / 8);
   92   _end = . ;
   93   PROVIDE (end = .);
   94   /* Stabs debugging sections.  */
   95   .stab 0 : { *(.stab) }
   96   .stabstr 0 : { *(.stabstr) }
   97   .stab.excl 0 : { *(.stab.excl) }
   98   .stab.exclstr 0 : { *(.stab.exclstr) }
   99   .stab.index 0 : { *(.stab.index) }
  100   .stab.indexstr 0 : { *(.stab.indexstr) }
  101   .comment 0 : { *(.comment) }
  102   /* DWARF debug sections.
  103      Symbols in the DWARF debugging sections are relative to the beginning
  104      of the section so we begin them at 0.  */
  105   /* DWARF 1 */
  106   .debug          0 : { *(.debug) }
  107   .line           0 : { *(.line) }
  108   /* GNU DWARF 1 extensions */
  109   .debug_srcinfo  0 : { *(.debug_srcinfo) }
  110   .debug_sfnames  0 : { *(.debug_sfnames) }
  111   /* DWARF 1.1 and DWARF 2 */
  112   .debug_aranges  0 : { *(.debug_aranges) }
  113   .debug_pubnames 0 : { *(.debug_pubnames) }
  114   /* DWARF 2 */
  115   .debug_info     0 : { *(.debug_info) }
  116   .debug_abbrev   0 : { *(.debug_abbrev) }
  117   .debug_line     0 : { *(.debug_line) }
  118   .debug_frame    0 : { *(.debug_frame) }
  119   .debug_str      0 : { *(.debug_str) }
  120   .debug_loc      0 : { *(.debug_loc) }
  121   .debug_macinfo  0 : { *(.debug_macinfo) }
  122   /* SGI/MIPS DWARF 2 extensions */
  123   .debug_weaknames 0 : { *(.debug_weaknames) }
  124   .debug_funcnames 0 : { *(.debug_funcnames) }
  125   .debug_typenames 0 : { *(.debug_typenames) }
  126   .debug_varnames  0 : { *(.debug_varnames) }
  127   /* These must appear regardless of  .  */
  128 }

Cache object: 0d7fe74e2d2569f725c2137bb2905ec5


[ 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.