mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-14 15:21:32 +00:00
Obsolete; not referenced by anything.
This commit is contained in:
parent
0ff846a503
commit
6d4d056202
@ -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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user