diff options
author | hubertf <hubertf> | 1998-10-04 02:29:35 +0000 |
---|---|---|
committer | hubertf <hubertf> | 1998-10-04 02:29:35 +0000 |
commit | 2586fb974144c9c755942db30992791170071ee2 (patch) | |
tree | ce058d6d07b508c10eafe329000f90eb7755a6bc /mk | |
parent | 81807aad2811c251cd549581ab2c4b22299b86bb (diff) | |
download | pkgsrc-2586fb974144c9c755942db30992791170071ee2.tar.gz |
fix list of ports supporting UVM and PMAP_NEW with reality.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.own.mk | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/mk/bsd.own.mk b/mk/bsd.own.mk index e8b40924471..4e11d274479 100644 --- a/mk/bsd.own.mk +++ b/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.own.mk,v 1.7 1998/08/30 04:44:56 lukem Exp $ +# $NetBSD: bsd.own.mk,v 1.8 1998/10/04 02:29:35 hubertf Exp $ .if !defined(_BSD_OWN_MK_) _BSD_OWN_MK_=1 @@ -78,15 +78,25 @@ NETBSD_CURRENT!= /usr/bin/uname -r | /usr/bin/sed -e 's|^1\.3[C-Z]$$|yes|' .if (${NETBSD_CURRENT} == "yes") # Systems on which UVM is the standard VM system. .if (${MACHINE} == "alpha") || \ + (${MACHINE} == "arm32") || \ + (${MACHINE} == "atari") || \ + (${MACHINE} == "bebox") || \ (${MACHINE} == "hp300") || \ + (${MACHINE} == "i386") || \ (${MACHINE} == "mac68k") || \ + (${MACHINE} == "macppc") || \ + (${MACHINE} == "ofppc") || \ (${MACHINE} == "mvme68k") || \ - (${MACHINE} == "sparc") + (${MACHINE} == "pc532") || \ + (${MACHINE} == "sparc") || \ + (${MACHINE} == "sparc64") UVM?= yes .endif # Systems that use UVM's new pmap interface. -.if (${MACHINE} == "alpha") +.if (${MACHINE} == "alpha") || \ + (${MACHINE} == "i386") || \ + (${MACHINE} == "pc532") PMAP_NEW?= yes .endif |