Home | History | Annotate | Line # | Download | only in conf
kern.ldscript revision 1.1.6.2
      1      1.1   matt /* Default linker script, for normal executables */
      2      1.1   matt OUTPUT_FORMAT("elf64-littleaarch64", "elf64-bigaarch64",
      3      1.1   matt 	      "elf64-littleaarch64")
      4      1.1   matt OUTPUT_ARCH(aarch64)
      5      1.1   matt ENTRY(_start)
      6      1.1   matt SECTIONS
      7      1.1   matt {
      8      1.1   matt   /* Read-only sections, merged into text segment: */
      9  1.1.6.2  skrll   PROVIDE (__kernel_text = .);
     10      1.1   matt   .text           :
     11      1.1   matt   {
     12      1.1   matt     PROVIDE_HIDDEN (__eprol = .);
     13      1.1   matt     *(.text)
     14      1.1   matt     *(.text.unlikely .text.*_unlikely)
     15      1.1   matt     *(.text.exit .text.exit.*)
     16      1.1   matt     *(.text.startup .text.startup.*)
     17      1.1   matt     *(.text.hot .text.hot.*)
     18      1.1   matt     *(.stub .text.* .gnu.linkonce.t.*)
     19      1.1   matt     /* .gnu.warning sections are handled specially by elf32.em.  */
     20  1.1.6.2  skrll /*    . = ALIGN(0x800) */
     21      1.1   matt     *(.vectors)
     22      1.1   matt   } =0
     23      1.1   matt   .rodata         : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
     24      1.1   matt   .rodata1        : { *(.rodata1) }
     25      1.1   matt   .eh_frame_hdr : { *(.eh_frame_hdr) }
     26      1.1   matt   .eh_frame       : ONLY_IF_RO { KEEP (*(.eh_frame)) }
     27      1.1   matt   .gcc_except_table   : ONLY_IF_RO { *(.gcc_except_table
     28      1.1   matt   .gcc_except_table.*) }
     29      1.1   matt   /* These sections are generated by the Sun/Oracle C++ compiler.  */
     30      1.1   matt   .exception_ranges   : ONLY_IF_RO { *(.exception_ranges
     31      1.1   matt   .exception_ranges*) }
     32      1.1   matt   PROVIDE (__etext = .);
     33      1.1   matt   PROVIDE (_etext = .);
     34      1.1   matt   PROVIDE (etext = .);
     35      1.1   matt   /* Adjust the address for the data segment.  We want to adjust up to
     36      1.1   matt      the same address within the page on the next page up.  */
     37      1.1   matt   . = ALIGN (CONSTANT (MAXPAGESIZE)) - ((CONSTANT (MAXPAGESIZE) - .) & (CONSTANT (MAXPAGESIZE) - 1)); . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESIZE));
     38      1.1   matt   /* Exception handling  */
     39      1.1   matt   .eh_frame       : ONLY_IF_RW { KEEP (*(.eh_frame)) }
     40      1.1   matt   .gcc_except_table   : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
     41      1.1   matt   .exception_ranges   : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
     42      1.1   matt   .got            : { *(.got) *(.igot) }
     43      1.1   matt   . = DATA_SEGMENT_RELRO_END (24, .);
     44      1.1   matt   .got.plt        : { *(.got.plt)  *(.igot.plt) }
     45      1.1   matt   .data           :
     46      1.1   matt   {
     47      1.1   matt     PROVIDE (__data_start = .);
     48      1.1   matt     *(.data .data.* .gnu.linkonce.d.*)
     49      1.1   matt     SORT(CONSTRUCTORS)
     50      1.1   matt   }
     51      1.1   matt   .data1          : { *(.data1) }
     52      1.1   matt   _edata = .; PROVIDE (edata = .);
     53      1.1   matt   . = .;
     54      1.1   matt   __bss_start = .;
     55      1.1   matt   __bss_start__ = .;
     56      1.1   matt   .bss            :
     57      1.1   matt   {
     58  1.1.6.1  skrll     *(.dynbss)
     59  1.1.6.1  skrll     *(.bss .bss.* .gnu.linkonce.b.*)
     60  1.1.6.1  skrll     *(COMMON)
     61  1.1.6.1  skrll     /* Align here to ensure that the .bss section occupies space up to
     62  1.1.6.1  skrll        _end.  Align after .bss to ensure correct alignment even if the
     63  1.1.6.1  skrll        .bss section disappears because there are no input sections.
     64  1.1.6.1  skrll        FIXME: Why do we need it? When there is no .bss section, we don't
     65  1.1.6.1  skrll        pad the .data section.  */
     66  1.1.6.1  skrll     . = ALIGN(. != 0 ? 32 / 8 : 1);
     67      1.1   matt   }
     68      1.1   matt   _bss_end__ = . ; __bss_end__ = . ;
     69      1.1   matt   . = ALIGN(32 / 8);
     70      1.1   matt   . = ALIGN(32 / 8);
     71      1.1   matt   __end__ = . ;
     72      1.1   matt   _end = .; PROVIDE (end = .);
     73      1.1   matt   . = DATA_SEGMENT_END (.);
     74      1.1   matt   .ARM.attributes 0 : { KEEP (*(.ARM.attributes)) KEEP (*(.gnu.attributes)) }
     75      1.1   matt   .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
     76      1.1   matt }
     77