Kernel binary format is hereby officially changed to ELF32.

This commit is contained in:
marcus 2001-03-01 23:34:08 +00:00
parent 01cd332ad1
commit 389ac2109b
1 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
OUTPUT_FORMAT("coff-shl")
OUTPUT_FORMAT("elf32-shl-unx")
OUTPUT_ARCH(sh)
MEMORY
{
@ -11,32 +11,32 @@ SECTIONS
*(.text)
*(.rodata)
*(.strings)
_etext = . ;
etext = . ;
} > ram
.tors :
{
___ctors = . ;
__ctors = . ;
*(.ctors)
___ctors_end = . ;
___dtors = . ;
__ctors_end = . ;
__dtors = . ;
*(.dtors)
___dtors_end = . ;
__dtors_end = . ;
} > ram
.data :
{
*(.data)
_edata = . ;
edata = . ;
} > ram
.bss :
{
_bss_start = . ;
bss_start = . ;
*(.bss)
*(COMMON)
_end = . ;
end = . ;
} > ram
.stack :
{
_stack = . ;
stack = . ;
*(.stack)
} > ram
.stab 0 (NOLOAD) :