Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch fix the calculation bug for the LMA of bss.
details: https://anonhg.NetBSD.org/src/rev/2b5b6cac6a3b
branches: trunk
changeset: 481811:2b5b6cac6a3b
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Sun Feb 06 16:53:57 2000 +0000
description:
fix the calculation bug for the LMA of bss.
diffstat:
sys/arch/evbsh3/conf/sh.x | 2 +-
sys/arch/evbsh3/conf/shl.x | 2 +-
sys/arch/mmeye/conf/sh.x | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diffs (36 lines):
diff -r f073530d1bd9 -r 2b5b6cac6a3b sys/arch/evbsh3/conf/sh.x
--- a/sys/arch/evbsh3/conf/sh.x Sun Feb 06 16:49:51 2000 +0000
+++ b/sys/arch/evbsh3/conf/sh.x Sun Feb 06 16:53:57 2000 +0000
@@ -32,7 +32,7 @@
_edata = . ;
} > ram
.bss :
- AT ( ROM + SIZEOF(.text) + SIZEOF(.tors) + SIZEOF(.data) + SIZEOF(.bss))
+ AT ( ROM + SIZEOF(.text) + SIZEOF(.tors) + SIZEOF(.data))
{
_bss_start = . ;
*(.bss)
diff -r f073530d1bd9 -r 2b5b6cac6a3b sys/arch/evbsh3/conf/shl.x
--- a/sys/arch/evbsh3/conf/shl.x Sun Feb 06 16:49:51 2000 +0000
+++ b/sys/arch/evbsh3/conf/shl.x Sun Feb 06 16:53:57 2000 +0000
@@ -32,7 +32,7 @@
_edata = . ;
} > ram
.bss :
- AT ( ROM + SIZEOF(.text) + SIZEOF(.tors) + SIZEOF(.data) + SIZEOF(.bss))
+ AT ( ROM + SIZEOF(.text) + SIZEOF(.tors) + SIZEOF(.data))
{
_bss_start = . ;
*(.bss)
diff -r f073530d1bd9 -r 2b5b6cac6a3b sys/arch/mmeye/conf/sh.x
--- a/sys/arch/mmeye/conf/sh.x Sun Feb 06 16:49:51 2000 +0000
+++ b/sys/arch/mmeye/conf/sh.x Sun Feb 06 16:53:57 2000 +0000
@@ -32,7 +32,7 @@
_edata = . ;
} > ram
.bss :
- AT ( ROM + SIZEOF(.text) + SIZEOF(.tors) + SIZEOF(.data) + SIZEOF(.bss))
+ AT ( ROM + SIZEOF(.text) + SIZEOF(.tors) + SIZEOF(.data))
{
_bss_start = . ;
*(.bss)
Home |
Main Index |
Thread Index |
Old Index