summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Brown2007-01-12 03:43:10 +0100
committerMichael Brown2007-01-12 03:43:10 +0100
commit39a8ed827c30c773ab447286509c900d47695383 (patch)
treeb00576a9d7f0d240b76defb29513c353d58c1041 /src
parentObsoleted by arch/i386/interface/pxe/pxe_call.c (diff)
downloadipxe-39a8ed827c30c773ab447286509c900d47695383.tar.gz
ipxe-39a8ed827c30c773ab447286509c900d47695383.tar.xz
ipxe-39a8ed827c30c773ab447286509c900d47695383.zip
Long since obsoleted by arch/i386/scripts/i386.lds
Diffstat (limited to 'src')
-rw-r--r--src/arch/i386/core/etherboot.lds90
1 files changed, 0 insertions, 90 deletions
diff --git a/src/arch/i386/core/etherboot.lds b/src/arch/i386/core/etherboot.lds
deleted file mode 100644
index 6f4063293..000000000
--- a/src/arch/i386/core/etherboot.lds
+++ /dev/null
@@ -1,90 +0,0 @@
-OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
-OUTPUT_ARCH(i386)
-
-ENTRY(_text)
-SECTIONS {
- . = ALIGN(16);
- /* Start address of Etherboot in the virtual address space */
- _virt_start = 0;
- _text = . ;
- .text.nocompress : {
- *(.text*.nocompress)
- . = ALIGN(16);
- } = 0x9090
-
- .text16 : {
- _text16 = .;
- *(.text16)
- *(.text16.*)
- _etext16 = . ;
- }
- .text.compress : {
- *(.text)
- *(.text.*)
- } = 0x9090
- .rodata : {
- . = ALIGN(4);
- *(.rodata)
- *(.rodata.*)
- }
- . = ALIGN(4);
- .drivers.pci : {
- pci_drivers = . ;
- *(.drivers.pci);
- pci_drivers_end = . ;
- }
- . = ALIGN(4);
- .drivers.isa : {
- isa_drivers = . ;
- *(.drivers.isa);
- isa_drivers_end = .;
- }
- _etext = . ;
- _data = . ;
- .data : {
- *(.data)
- *(.data.*)
- }
- _edata = . ;
- _uncompressed_verbatim_end = . ;
- . = ALIGN(16);
- .bss.preserve : {
- *(.bss.preserve)
- *(.bss.preserve.*)
- }
- _bss = . ;
- .bss : {
- *(.bss)
- *(.bss.*)
- }
- . = ALIGN(16);
- _ebss = .;
- _stack = . ;
- .stack : {
- _stack_start = . ;
- *(.stack)
- *(.stack.*)
- _stack_end = . ;
- }
- _bss_size = _ebss - _bss;
- _stack_offset = _stack - _text ;
- _stack_offset_pgh = _stack_offset / 16 ;
- _stack_size = _stack_end - _stack_start ;
- . = ALIGN(16);
- _end = . ;
-
- /DISCARD/ : {
- *(.comment)
- *(.note)
- }
-
- /* PXE-specific symbol calculations. The results of these are
- * needed in romprefix.S, which is why they must be calculated
- * here.
- */
- _pxe_stack_size = _pxe_stack_t_size
- + _pxe_callback_interface_size
- + _rm_callback_interface_size
- + _e820mangler_size + 15 ;
-
-}