Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/cats/conf LINKADDRESS != LOADADDRESS, so fix that t...



details:   https://anonhg.NetBSD.org/src/rev/81a856973719
branches:  trunk
changeset: 521804:81a856973719
user:      chris <chris%NetBSD.org@localhost>
date:      Wed Feb 06 00:55:56 2002 +0000

description:
LINKADDRESS != LOADADDRESS, so fix that typo.
Also move the elf2aout conversion to be last in the build sequence, this means that strip is run on the elf kernel.
Also have dbsym run on the kernel, this should allow us to have symbols in the kernel.
This now means kernels boot and run, and can also have ddb symbols.

diffstat:

 sys/arch/cats/conf/Makefile.cats.inc |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (21 lines):

diff -r 6037eaf20775 -r 81a856973719 sys/arch/cats/conf/Makefile.cats.inc
--- a/sys/arch/cats/conf/Makefile.cats.inc      Wed Feb 06 00:48:53 2002 +0000
+++ b/sys/arch/cats/conf/Makefile.cats.inc      Wed Feb 06 00:55:56 2002 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.cats.inc,v 1.3 2002/01/31 10:37:41 chris Exp $
+#      $NetBSD: Makefile.cats.inc,v 1.4 2002/02/06 00:55:56 chris Exp $
 
 GENASSYM_EXTRAS+=      ${ARM}/footbridge/genassym.cf
 LOOSE_PROTOTYPES=      NO
@@ -6,8 +6,9 @@
 .if (${OBJECT_FMT} == "ELF")
 # Under ELF we need to do a whole load of stuff extra to get that kernel.
 
-LINKADDRESS=0xF0000020
+LOADADDRESS=0xF0000020
 
-SYSTEM_LD_TAIL= \
+SYSTEM_LD_TAIL_EXTRA=; \
+       ${DBSYM} $@ || true; \
        $S/arch/${MACHINE}/conf/elf2aout.sh
 .endif 



Home | Main Index | Thread Index | Old Index