From dae01890b28f1c7c0d52144b675d43de98cb5a41 Mon Sep 17 00:00:00 2001 From: thorpej Date: Mon, 4 May 1998 04:37:33 +0000 Subject: [PATCH] Add a mechanism for specifying which platforms use UVM and which use PMAP_NEW, and enable both for NetBSD/alpha. --- share/mk/bsd.own.mk | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index 1110b1866e40..b061d1b07a25 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.own.mk,v 1.64 1998/04/13 12:03:07 lukem Exp $ +# $NetBSD: bsd.own.mk,v 1.65 1998/05/04 04:37:33 thorpej Exp $ .if !defined(_BSD_OWN_MK_) _BSD_OWN_MK_=1 @@ -66,6 +66,18 @@ STRIPFLAG?= -s # in environments where it's not possible to keep /sys publicly readable) #SYS_INCLUDE= symlinks +# XXX The next two are temporary until the transition to UVM is complete. + +# Systems on which UVM is the standard VM system. +.if (${MACHINE} == "alpha") +UVM?= yes +.endif + +# Systems that use UVM's new pmap interface. +.if (${MACHINE} == "alpha") +PMAP_NEW?= yes +.endif + # don't try to generate PIC versions of libraries on machines # which don't support PIC. .if (${MACHINE_ARCH} == "vax") || \