david/ipxe
david
/
ipxe
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/arch/i386/prefix/unhuf.lds

34 lines
491 B
Plaintext

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