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

TOMOYO Linux Cross Reference
Linux/arch/m68k/kernel/vmlinux-sun3.lds

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/m68k/kernel/vmlinux-sun3.lds (Architecture sparc) and /arch/m68k/kernel/vmlinux-sun3.lds (Architecture m68k)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /* ld script to make m68k Linux kernel */           2 /* ld script to make m68k Linux kernel */
  3                                                     3 
  4 #include <asm-generic/vmlinux.lds.h>                4 #include <asm-generic/vmlinux.lds.h>
  5 #include <asm/page.h>                               5 #include <asm/page.h>
  6 #include <asm/thread_info.h>                        6 #include <asm/thread_info.h>
  7                                                     7 
  8 OUTPUT_FORMAT("elf32-m68k", "elf32-m68k", "elf      8 OUTPUT_FORMAT("elf32-m68k", "elf32-m68k", "elf32-m68k")
  9 OUTPUT_ARCH(m68k)                                   9 OUTPUT_ARCH(m68k)
 10 ENTRY(_start)                                      10 ENTRY(_start)
 11 jiffies = jiffies_64 + 4;                          11 jiffies = jiffies_64 + 4;
 12 SECTIONS                                           12 SECTIONS
 13 {                                                  13 {
 14   . = 0xE002000;                                   14   . = 0xE002000;
 15   _text = .;                    /* Text and re     15   _text = .;                    /* Text and read-only data */
 16   .text : {                                        16   .text : {
 17         HEAD_TEXT                                  17         HEAD_TEXT
 18         TEXT_TEXT                                  18         TEXT_TEXT
 19         IRQENTRY_TEXT                              19         IRQENTRY_TEXT
 20         SOFTIRQENTRY_TEXT                          20         SOFTIRQENTRY_TEXT
 21         SCHED_TEXT                                 21         SCHED_TEXT
 22         LOCK_TEXT                                  22         LOCK_TEXT
 23         *(.fixup)                                  23         *(.fixup)
 24         *(.gnu.warning)                            24         *(.gnu.warning)
 25         } :text = 0x4e75                           25         } :text = 0x4e75
 26         RO_DATA(4096)                              26         RO_DATA(4096)
 27                                                    27 
 28   _etext = .;                   /* End of text     28   _etext = .;                   /* End of text section */
 29                                                    29 
 30   EXCEPTION_TABLE(16) :data                        30   EXCEPTION_TABLE(16) :data
 31   _sdata = .;                   /* Start of rw     31   _sdata = .;                   /* Start of rw data section */
 32   RW_DATA(16, PAGE_SIZE, THREAD_SIZE) :data        32   RW_DATA(16, PAGE_SIZE, THREAD_SIZE) :data
 33   /* End of data goes *here* so that freeing i     33   /* End of data goes *here* so that freeing init code works properly. */
 34   _edata = .;                                      34   _edata = .;
 35                                                    35 
 36   /* will be freed after init */                   36   /* will be freed after init */
 37   . = ALIGN(PAGE_SIZE); /* Init code and data      37   . = ALIGN(PAGE_SIZE); /* Init code and data */
 38 __init_begin = .;                                  38 __init_begin = .;
 39         INIT_TEXT_SECTION(PAGE_SIZE)               39         INIT_TEXT_SECTION(PAGE_SIZE)
 40         INIT_DATA_SECTION(16)                      40         INIT_DATA_SECTION(16)
 41         .m68k_fixup : {                            41         .m68k_fixup : {
 42                 __start_fixup = .;                 42                 __start_fixup = .;
 43                 *(.m68k_fixup)                     43                 *(.m68k_fixup)
 44                 __stop_fixup = .;                  44                 __stop_fixup = .;
 45         }                                          45         }
 46         . = ALIGN(PAGE_SIZE);                      46         . = ALIGN(PAGE_SIZE);
 47         __init_end = .;                            47         __init_end = .;
 48                                                    48 
 49   BSS_SECTION(0, 0, 0)                             49   BSS_SECTION(0, 0, 0)
 50                                                    50 
 51   _end = . ;                                       51   _end = . ;
 52                                                    52 
 53   STABS_DEBUG                                      53   STABS_DEBUG
 54   ELF_DETAILS                                      54   ELF_DETAILS
 55                                                    55 
 56   /* Sections to be discarded */                   56   /* Sections to be discarded */
 57   DISCARDS                                         57   DISCARDS
 58 }                                                  58 }
                                                      

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