Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/dreamcast/conf Kernel binary format is hereby offic...
details: https://anonhg.NetBSD.org/src/rev/5d92a520b582
branches: trunk
changeset: 504411:5d92a520b582
user: marcus <marcus%NetBSD.org@localhost>
date: Thu Mar 01 23:34:08 2001 +0000
description:
Kernel binary format is hereby officially changed to ELF32.
diffstat:
sys/arch/dreamcast/conf/shl.x | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
diffs (51 lines):
diff -r ec005a86ba24 -r 5d92a520b582 sys/arch/dreamcast/conf/shl.x
--- a/sys/arch/dreamcast/conf/shl.x Thu Mar 01 22:53:13 2001 +0000
+++ b/sys/arch/dreamcast/conf/shl.x Thu Mar 01 23:34:08 2001 +0000
@@ -1,4 +1,4 @@
-OUTPUT_FORMAT("coff-shl")
+OUTPUT_FORMAT("elf32-shl-unx")
OUTPUT_ARCH(sh)
MEMORY
{
@@ -11,32 +11,32 @@
*(.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) :
Home |
Main Index |
Thread Index |
Old Index