Make the kenrel base address a variable.

This commit is contained in:
bjh21 2001-02-19 13:26:17 +00:00
parent 1317273fae
commit 504ce207cb

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.arm32,v 1.54 2000/12/17 15:52:40 jdolecek Exp $
# $NetBSD: Makefile.arm32,v 1.55 2001/02/19 13:26:17 bjh21 Exp $
# Makefile for NetBSD
#
@ -48,7 +48,9 @@ CWARNFLAGS+= -Wno-main
.endif
CFLAGS= ${DEBUG} ${COPTS} ${CWARNFLAGS}
AFLAGS= -x assembler-with-cpp -D_LOCORE
LINKFLAGS= -Ttext F0000000 -e start
LOADADDRESS= 0xF0000000
LINKFLAGS= -Ttext ${LOADADDRESS} -e start
STRIPFLAGS= -g
%INCLUDES