Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/macppc/conf Change the start address of INSTALL ker...
details: https://anonhg.NetBSD.org/src/rev/f6a41ef13279
branches: trunk
changeset: 475834:f6a41ef13279
user: tsubai <tsubai%NetBSD.org@localhost>
date: Fri Aug 27 07:59:49 1999 +0000
description:
Change the start address of INSTALL kernel to 0x800000 to use larger
contiguous space for memory disk.
diffstat:
sys/arch/macppc/conf/INSTALL | 5 +++--
sys/arch/macppc/conf/Makefile.macppc | 5 +++--
2 files changed, 6 insertions(+), 4 deletions(-)
diffs (52 lines):
diff -r ceba50edaeff -r f6a41ef13279 sys/arch/macppc/conf/INSTALL
--- a/sys/arch/macppc/conf/INSTALL Fri Aug 27 06:17:33 1999 +0000
+++ b/sys/arch/macppc/conf/INSTALL Fri Aug 27 07:59:49 1999 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL,v 1.13 1999/08/05 00:31:01 tsubai Exp $
+# $NetBSD: INSTALL,v 1.14 1999/08/27 07:59:49 tsubai Exp $
#
# config file for INSTALL FLOPPY
#
@@ -7,6 +7,8 @@
maxusers 32
+makeoptions TEXTADDR=0x800000
+
# Enable the hooks used for initializing the ram-disk.
options MEMORY_DISK_HOOKS
options MEMORY_DISK_IS_ROOT # Force root on ram-disk
@@ -69,7 +71,6 @@
nvram* at obio? # nvram
adb* at obio? # Apple Desktop Bus
akbd* at adb? # ADB keyboard
-ams* at adb? # ADB mouse
zsc* at obio?
zstty* at zsc? channel ?
mediabay* at obio?
diff -r ceba50edaeff -r f6a41ef13279 sys/arch/macppc/conf/Makefile.macppc
--- a/sys/arch/macppc/conf/Makefile.macppc Fri Aug 27 06:17:33 1999 +0000
+++ b/sys/arch/macppc/conf/Makefile.macppc Fri Aug 27 07:59:49 1999 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.macppc,v 1.8 1999/07/26 05:20:46 cgd Exp $
+# $NetBSD: Makefile.macppc,v 1.9 1999/08/27 07:59:49 tsubai Exp $
#
# Makefile for NetBSD
#
@@ -44,6 +44,7 @@
.endif
PPC= $S/arch/macppc
+TEXTADDR?= 100000
HAVE_GCC28!= ${CC} --version | egrep "^(2\.8|egcs)" ; echo
INCLUDES= -I. -I$S/arch -I$S -nostdinc
CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -Dmacppc
@@ -53,7 +54,7 @@
.endif
CFLAGS= ${DEBUG} ${COPTS} ${CWARNFLAGS} -msoft-float
AFLAGS= -D_LOCORE
-LINKFLAGS= -N -Ttext 100000 -e __start
+LINKFLAGS= -N -Ttext ${TEXTADDR} -e __start
STRIPFLAGS= --strip-debug
%INCLUDES
Home |
Main Index |
Thread Index |
Old Index