summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Brown2005-03-09 15:09:29 +0100
committerMichael Brown2005-03-09 15:09:29 +0100
commit6d4d056202768683f741ad8ca263759b95dbda97 (patch)
tree208fb290e1f0ac90ccee0d17b5f6c7fc38e58217 /src
parentunhuf.S is obsolete and no longer used (diff)
downloadipxe-6d4d056202768683f741ad8ca263759b95dbda97.tar.gz
ipxe-6d4d056202768683f741ad8ca263759b95dbda97.tar.xz
ipxe-6d4d056202768683f741ad8ca263759b95dbda97.zip
Obsolete; not referenced by anything.
Diffstat (limited to 'src')
-rw-r--r--src/arch/i386/prefix/unhuf.lds33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/arch/i386/prefix/unhuf.lds b/src/arch/i386/prefix/unhuf.lds
deleted file mode 100644
index 00d6b55bc..000000000
--- a/src/arch/i386/prefix/unhuf.lds
+++ /dev/null
@@ -1,33 +0,0 @@
-OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
-OUTPUT_ARCH(i386)
-
-SECTIONS
-{
- . = 0;
- .text : {
- _text = .;
- *(.head)
- *(.text)
- } = 0x9090
- .rodata : {
- *(.rodata)
- }
- _etext = . ;
- .data : {
- *(.data)
- /* Force 4 byte alignment */
- . = ALIGN(4);
- _payload = . ;
- *(.huf)
- _epayload = . ;
- }
- _edata = . ;
- _data_size = _edata - _start;
- /* Etherboot needs to be 16 byte aligned */
- . = ALIGN(16);
- .bss : {
- *(.bss)
- }
- _end = . ;
- _image_size = _end - _start;
-}