~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/um/kernel/vmlinux.lds.S

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/um/kernel/vmlinux.lds.S (Version linux-6.12-rc7) and /arch/sparc/kernel/vmlinux.lds.S (Version linux-2.6.0)


  1 #define RUNTIME_DISCARD_EXIT                   !!   1 /* ld script to make SparcLinux kernel */
  2 KERNEL_STACK_SIZE = 4096 * (1 << CONFIG_KERNEL << 
  3                                                     2 
  4 #ifdef CONFIG_LD_SCRIPT_STATIC                 !!   3 #include <asm-generic/vmlinux.lds.h>
  5 #include "uml.lds.S"                           !!   4 
  6 #else                                          !!   5 OUTPUT_FORMAT("elf32-sparc", "elf32-sparc", "elf32-sparc")
  7 #include "dyn.lds.S"                           !!   6 OUTPUT_ARCH(sparc)
  8 #endif                                         !!   7 ENTRY(_start)
                                                   >>   8 jiffies = jiffies_64 + 4;
                                                   >>   9 SECTIONS
                                                   >>  10 {
                                                   >>  11   . = 0x10000 + SIZEOF_HEADERS;
                                                   >>  12   .text 0xf0004000 :
                                                   >>  13   {
                                                   >>  14     *(.text)
                                                   >>  15     *(.gnu.warning)
                                                   >>  16   } =0
                                                   >>  17   _etext = .;
                                                   >>  18   PROVIDE (etext = .);
                                                   >>  19   RODATA
                                                   >>  20   .data    :
                                                   >>  21   {
                                                   >>  22     *(.data)
                                                   >>  23     CONSTRUCTORS
                                                   >>  24   }
                                                   >>  25   .data1   : { *(.data1) }
                                                   >>  26   _edata  =  .;
                                                   >>  27   PROVIDE (edata = .);
                                                   >>  28   __start___fixup = .;
                                                   >>  29   .fixup   : { *(.fixup) }
                                                   >>  30   __stop___fixup = .;
                                                   >>  31   __start___ex_table = .;
                                                   >>  32   __ex_table : { *(__ex_table) }
                                                   >>  33   __stop___ex_table = .;
                                                   >>  34 
                                                   >>  35   . = ALIGN(4096);
                                                   >>  36   __init_begin = .;
                                                   >>  37   .init.text : { 
                                                   >>  38         _sinittext = .;
                                                   >>  39         *(.init.text)
                                                   >>  40         _einittext = .;
                                                   >>  41   }
                                                   >>  42   __init_text_end = .;
                                                   >>  43   .init.data : { *(.init.data) }
                                                   >>  44   . = ALIGN(16);
                                                   >>  45   __setup_start = .;
                                                   >>  46   .init.setup : { *(.init.setup) }
                                                   >>  47   __setup_end = .;
                                                   >>  48   __start___param = .;
                                                   >>  49   __param : { *(__param) }
                                                   >>  50   __stop___param = .;
                                                   >>  51   __initcall_start = .;
                                                   >>  52   .initcall.init : {
                                                   >>  53         *(.initcall1.init) 
                                                   >>  54         *(.initcall2.init) 
                                                   >>  55         *(.initcall3.init) 
                                                   >>  56         *(.initcall4.init) 
                                                   >>  57         *(.initcall5.init) 
                                                   >>  58         *(.initcall6.init) 
                                                   >>  59         *(.initcall7.init)
                                                   >>  60   }
                                                   >>  61   __initcall_end = .;
                                                   >>  62   __con_initcall_start = .;
                                                   >>  63   .con_initcall.init : { *(.con_initcall.init) }
                                                   >>  64   __con_initcall_end = .;
                                                   >>  65   SECURITY_INIT
                                                   >>  66   . = ALIGN(4096);
                                                   >>  67   __initramfs_start = .;
                                                   >>  68   .init.ramfs : { *(.init.ramfs) }
                                                   >>  69   __initramfs_end = .;
                                                   >>  70   . = ALIGN(32);
                                                   >>  71   __per_cpu_start = .;
                                                   >>  72   .data.percpu  : { *(.data.percpu) }
                                                   >>  73   __per_cpu_end = .;
                                                   >>  74   . = ALIGN(4096);
                                                   >>  75   __init_end = .;
                                                   >>  76   . = ALIGN(32);
                                                   >>  77   .data.cacheline_aligned : { *(.data.cacheline_aligned) }
                                                   >>  78 
                                                   >>  79   __bss_start = .;
                                                   >>  80   .sbss      : { *(.sbss) *(.scommon) }
                                                   >>  81   .bss       :
                                                   >>  82   {
                                                   >>  83    *(.dynbss)
                                                   >>  84    *(.bss)
                                                   >>  85    *(COMMON)
                                                   >>  86   }
                                                   >>  87   _end = . ;
                                                   >>  88   PROVIDE (end = .);
                                                   >>  89   /* Stabs debugging sections.  */
                                                   >>  90   .stab 0 : { *(.stab) }
                                                   >>  91   .stabstr 0 : { *(.stabstr) }
                                                   >>  92   .stab.excl 0 : { *(.stab.excl) }
                                                   >>  93   .stab.exclstr 0 : { *(.stab.exclstr) }
                                                   >>  94   .stab.index 0 : { *(.stab.index) }
                                                   >>  95   .stab.indexstr 0 : { *(.stab.indexstr) }
                                                   >>  96   .comment 0 : { *(.comment) }
                                                   >>  97   .debug          0 : { *(.debug) }
                                                   >>  98   .debug_srcinfo  0 : { *(.debug_srcinfo) }
                                                   >>  99   .debug_aranges  0 : { *(.debug_aranges) }
                                                   >> 100   .debug_pubnames 0 : { *(.debug_pubnames) }
                                                   >> 101   .debug_sfnames  0 : { *(.debug_sfnames) }
                                                   >> 102   .line           0 : { *(.line) }
                                                   >> 103   /DISCARD/ : { *(.exit.text) *(.exit.data) *(.exitcall.exit) }
                                                   >> 104 }
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php