123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- /* -*- sh -*- */
-
- /*
- * Linker script for i386 images
- *
- */
-
- OUTPUT_FORMAT ( "elf32-i386", "elf32-i386", "elf32-i386" )
- OUTPUT_ARCH ( i386 )
- ENTRY ( _entry )
-
- SECTIONS {
-
- /* All sections in the resulting file have consecutive load
- * addresses, but may have individual link addresses depending on
- * the memory model being used.
- *
- * The linker symbols _{prefix,textdata}_link_addr, load_addr, and
- * _max_align may be specified explicitly. If not specified, they
- * will default to:
- *
- * _prefix_link_addr = 0
- * _textdata_link_addr = 0
- * _load_addr = 0
- * _max_align = 16
- *
- * We guarantee alignment of virtual addresses to any alignment
- * specified by the constituent object files (e.g. via
- * __attribute__((aligned(x)))). Load addresses are guaranteed
- * only up to _max_align. Provided that all loader and relocation
- * code honours _max_align, this means that physical addresses are
- * also guaranteed up to _max_align.
- *
- * Note that when using -DKEEP_IT_REAL, the UNDI segments are only
- * guaranteed to be loaded on a paragraph boundary (i.e. 16-byte
- * alignment). Using _max_align>16 will therefore not guarantee
- * >16-byte alignment of physical addresses when -DKEEP_IT_REAL is
- * used (though virtual addresses will still be fully aligned).
- *
- */
-
- /*
- * The prefix
- */
-
- _prefix_link_addr = DEFINED ( _prefix_link_addr ) ? _prefix_link_addr : 0;
- . = _prefix_link_addr;
- _prefix = .;
-
- .prefix : AT ( _prefix_load_offset + __prefix ) {
- __prefix = .;
- _entry = .;
- *(.prefix)
- *(.prefix.*)
- _eprefix_progbits = .;
- }
-
- _eprefix = .;
-
- /*
- * The 16-bit sections, if present
- */
-
- _text16_link_addr = 0;
- . = _text16_link_addr;
- _text16 = .;
-
- . += 1; /* Prevent NULL being valid */
-
- .text16 : AT ( _text16_load_offset + __text16 ) {
- __text16 = .;
- *(.text16)
- *(.text16.*)
- _etext16_progbits = .;
- } = 0x9090
-
- _etext16 = .;
-
- _data16_link_addr = 0;
- . = _data16_link_addr;
- _data16 = .;
-
- . += 1; /* Prevent NULL being valid */
-
- .rodata16 : AT ( _data16_load_offset + __rodata16 ) {
- __rodata16 = .;
- *(.rodata16)
- *(.rodata16.*)
- }
- .data16 : AT ( _data16_load_offset + __data16 ) {
- __data16 = .;
- *(.data16)
- *(.data16.*)
- _edata16_progbits = .;
- }
- .bss16 : AT ( _data16_load_offset + __bss16 ) {
- __bss16 = .;
- _bss16 = .;
- *(.bss16)
- *(.bss16.*)
- _ebss16 = .;
- }
- .stack16 : AT ( _data16_load_offset + __stack16 ) {
- __stack16 = .;
- *(.stack16)
- *(.stack16.*)
- }
-
- _edata16 = .;
-
- /*
- * The 32-bit sections
- */
-
- _textdata_link_addr = ( DEFINED ( _textdata_link_addr ) ?
- _textdata_link_addr : 0 );
- . = _textdata_link_addr;
- _textdata = .;
-
- _text = .;
-
- . += 1; /* Prevent NULL being valid */
-
- .text : AT ( _textdata_load_offset + __text ) {
- __text = .;
- *(.text.null_trap)
- *(.text)
- *(.text.*)
- } = 0x9090
-
- _etext = .;
-
- _data = .;
-
- .rodata : AT ( _textdata_load_offset + __rodata ) {
- __rodata = .;
- *(.rodata)
- *(.rodata.*)
- }
- .data : AT ( _textdata_load_offset + __data ) {
- __data = .;
- *(.data)
- *(.data.*)
- *(SORT(.tbl.*)) /* Various tables. See include/tables.h */
- _etextdata_progbits = .;
- }
- .bss : AT ( _textdata_load_offset + __bss ) {
- __bss = .;
- _bss = .;
- *(.bss)
- *(.bss.*)
- *(COMMON)
- _ebss = .;
- }
- .stack : AT ( _textdata_load_offset + __stack ) {
- __stack = .;
- *(.stack)
- *(.stack.*)
- }
-
- _edata = .;
-
- _etextdata = .;
-
- _end = .;
-
- /*
- * Compressor information block
- */
-
- _zinfo_link_addr = 0;
- . = _zinfo_link_addr;
- _zinfo = .;
-
- .zinfo : AT ( _zinfo_load_offset + __zinfo ) {
- __zinfo = .;
- _entry = .;
- *(.zinfo)
- *(.zinfo.*)
- _ezinfo_progbits = .;
- }
-
- _ezinfo = .;
-
- /*
- * Dispose of the comment and note sections to make the link map
- * easier to read
- */
-
- /DISCARD/ : {
- *(.comment)
- *(.note)
- }
-
- /*
- * Load address calculations. The slightly obscure nature of the
- * calculations is because ALIGN(x) can only operate on the
- * location counter.
- */
-
- _max_align = DEFINED ( _max_align ) ? _max_align : 16;
- _load_addr = DEFINED ( _load_addr ) ? _load_addr : 0;
-
- . = _load_addr;
-
- . -= _prefix_link_addr;
- _prefix_load_offset = ALIGN ( _max_align );
- _prefix_load_addr = _prefix_link_addr + _prefix_load_offset;
- _prefix_size = _eprefix - _prefix;
- _prefix_progbits_size = _eprefix_progbits - _prefix;
- . = _prefix_load_addr + _prefix_progbits_size;
-
- . -= _text16_link_addr;
- _text16_load_offset = ALIGN ( _max_align );
- _text16_load_addr = _text16_link_addr + _text16_load_offset;
- _text16_size = _etext16 - _text16;
- _text16_progbits_size = _etext16_progbits - _text16;
- . = _text16_load_addr + _text16_progbits_size;
-
- . -= _data16_link_addr;
- _data16_load_offset = ALIGN ( _max_align );
- _data16_load_addr = _data16_link_addr + _data16_load_offset;
- _data16_size = _edata16 - _data16;
- _data16_progbits_size = _edata16_progbits - _data16;
- . = _data16_load_addr + _data16_progbits_size;
-
- . -= _textdata_link_addr;
- _textdata_load_offset = ALIGN ( _max_align );
- _textdata_load_addr = _textdata_link_addr + _textdata_load_offset;
- _textdata_size = _etextdata - _textdata;
- _textdata_progbits_size = _etextdata_progbits - _textdata;
- . = _textdata_load_addr + _textdata_progbits_size;
-
- _load_size = . - _load_addr;
-
- . -= _zinfo_link_addr;
- _zinfo_load_offset = ALIGN ( _max_align );
- _zinfo_load_addr = _zinfo_link_addr + _zinfo_load_offset;
- _zinfo_size = _ezinfo - _zinfo;
- _zinfo_progbits_size = _ezinfo_progbits - _zinfo;
- . = _zinfo_load_addr + _zinfo_progbits_size;
-
- _payload_offset = _text16_load_offset;
-
- /*
- * Alignment checks. ALIGN() can only operate on the location
- * counter, so we set the location counter to each value we want
- * to check.
- */
-
- . = _prefix_load_addr - _prefix_link_addr;
- _assert = ASSERT ( ( . == ALIGN ( _max_align ) ),
- "_prefix is badly aligned" );
-
- . = _text16_load_addr - _text16_link_addr;
- _assert = ASSERT ( ( . == ALIGN ( _max_align ) ),
- "_text16 is badly aligned" );
-
- . = _data16_load_addr - _data16_link_addr;
- _assert = ASSERT ( ( . == ALIGN ( _max_align ) ),
- "_data16 is badly aligned" );
-
- . = _textdata_load_addr - _textdata_link_addr;
- _assert = ASSERT ( ( . == ALIGN ( _max_align ) ),
- "_text is badly aligned" );
-
- /*
- * Values calculated to save code from doing it
- */
- _text16_size_pgh = ( ( _text16_size + 15 ) / 16 );
- _data16_size_pgh = ( ( _data16_size + 15 ) / 16 );
-
- /*
- * Load sizes in paragraphs and sectors. Note that wherever the
- * _load_size variables are used, there must be a corresponding
- * .zinfo.fixup section.
- */
- _load_size_pgh = ( ( _load_size + 15 ) / 16 );
- _load_size_sect = ( ( _load_size + 511 ) / 512 );
- }
|