david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Obsolete; not referenced by anything.

This commit is contained in:
Michael Brown 2005-03-09 14:09:29 +00:00
parent 0ff846a503
commit 6d4d056202
1 changed files with 0 additions and 33 deletions

View File

@ -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;
}