From 39a8ed827c30c773ab447286509c900d47695383 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Fri, 12 Jan 2007 02:43:10 +0000 Subject: [PATCH] Long since obsoleted by arch/i386/scripts/i386.lds --- src/arch/i386/core/etherboot.lds | 90 -------------------------------- 1 file changed, 90 deletions(-) delete mode 100644 src/arch/i386/core/etherboot.lds diff --git a/src/arch/i386/core/etherboot.lds b/src/arch/i386/core/etherboot.lds deleted file mode 100644 index 6f406329..00000000 --- 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 ; - -}