summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPer Fogelstrom <pefo@cvs.openbsd.org>1996-08-26 10:52:25 +0000
committerPer Fogelstrom <pefo@cvs.openbsd.org>1996-08-26 10:52:25 +0000
commit5e20c85b8b6c6451ad4206d60c4bd5c8d3fc844c (patch)
tree0075c6e59eb6e46e81a77d37d93dee04409955ed
parente8a4a99db87d7a271fe06aa64ba749b02f389bc1 (diff)
Move kernel start from 0x80080000 to 0x80100000
-rw-r--r--sys/arch/arc/conf/Makefile.arc6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/arc/conf/Makefile.arc b/sys/arch/arc/conf/Makefile.arc
index 4198aab947b..ba646119b03 100644
--- a/sys/arch/arc/conf/Makefile.arc
+++ b/sys/arch/arc/conf/Makefile.arc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.arc,v 1.3 1996/08/24 18:35:25 imp Exp $
+# $OpenBSD: Makefile.arc,v 1.4 1996/08/26 10:52:24 pefo Exp $
# @(#)Makefile.arc 8.2 (Berkeley) 2/16/94
#
@@ -93,9 +93,9 @@ SYSTEM_LD= -@if [ X${DEBUG} = X-g ]; \
then strip=-X; \
else strip=-x; \
fi; \
- echo ${LD} $$strip -N -o $@ -e start -Ttext 80080000 \
+ echo ${LD} $$strip -N -o $@ -e start -Ttext 80100000 \
'$${SYSTEM_OBJ}' vers.o; \
- ${LD} $$strip -N -o $@ -e start -Ttext 80080000 \
+ ${LD} $$strip -N -o $@ -e start -Ttext 80100000 \
${SYSTEM_OBJ} vers.o
#
SYSTEM_LD_TAIL= chmod 755 $@; \