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

TOMOYO Linux Cross Reference
Linux/arch/x86/boot/setup.ld

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ 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.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /*
  2  * setup.ld
  3  *
  4  * Linker script for the i386 setup code
  5  */
  6 OUTPUT_FORMAT("elf32-i386")
  7 OUTPUT_ARCH(i386)
  8 ENTRY(_start)
  9 
 10 SECTIONS
 11 {
 12         . = 0;
 13         .bstext : {
 14                 *(.bstext)
 15                 . = 495;
 16         } =0xffffffff
 17 
 18         .header         : { *(.header) }
 19         .entrytext      : { *(.entrytext) }
 20         .inittext       : { *(.inittext) }
 21         .initdata       : { *(.initdata) }
 22         __end_init = .;
 23 
 24         .text           : { *(.text .text.*) }
 25         .text32         : { *(.text32) }
 26 
 27         .pecompat       : { *(.pecompat) }
 28         PROVIDE(pecompat_fsize = setup_size - pecompat_fstart);
 29 
 30         . = ALIGN(16);
 31         .rodata         : { *(.rodata*) }
 32 
 33         .videocards     : {
 34                 video_cards = .;
 35                 *(.videocards)
 36                 video_cards_end = .;
 37         }
 38 
 39         . = ALIGN(16);
 40         .data           : { *(.data*) }
 41 
 42         .signature      : {
 43                 setup_sig = .;
 44                 LONG(0x5a5aaa55)
 45 
 46                 setup_size = ALIGN(ABSOLUTE(.), 4096);
 47                 setup_sects = ABSOLUTE(setup_size / 512);
 48         }
 49 
 50         . = ALIGN(16);
 51         .bss            :
 52         {
 53                 __bss_start = .;
 54                 *(.bss)
 55                 __bss_end = .;
 56         }
 57         . = ALIGN(16);
 58         _end = .;
 59 
 60         /DISCARD/       : {
 61                 *(.note*)
 62         }
 63 
 64         /*
 65          * The ASSERT() sink to . is intentional, for binutils 2.14 compatibility:
 66          */
 67         . = ASSERT(_end <= 0x8000, "Setup too big!");
 68         . = ASSERT(hdr == 0x1f1, "The setup header has the wrong offset!");
 69         /* Necessary for the very-old-loader check to work... */
 70         . = ASSERT(__end_init <= 5*512, "init sections too big!");
 71 
 72 }

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