Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src the PMAP_NEW option is gone as the new interface is no longe...



details:   https://anonhg.NetBSD.org/src/rev/026b2ec96777
branches:  trunk
changeset: 476279:026b2ec96777
user:      chs <chs%NetBSD.org@localhost>
date:      Sun Sep 12 01:19:23 1999 +0000

description:
the PMAP_NEW option is gone as the new interface is no longer optional.

diffstat:

 bin/ps/Makefile             |   7 +------
 lib/libkvm/Makefile         |   7 +------
 libexec/rpc.rstatd/Makefile |   7 +------
 share/mk/bsd.own.mk         |  12 ++----------
 usr.bin/fstat/Makefile      |   7 +------
 usr.bin/systat/Makefile     |   7 +------
 usr.bin/vmstat/Makefile     |   7 +------
 usr.bin/w/Makefile          |   7 +------
 usr.sbin/pstat/Makefile     |  10 +---------
 9 files changed, 10 insertions(+), 61 deletions(-)

diffs (179 lines):

diff -r 5a3e50b79ad1 -r 026b2ec96777 bin/ps/Makefile
--- a/bin/ps/Makefile   Sun Sep 12 01:16:55 1999 +0000
+++ b/bin/ps/Makefile   Sun Sep 12 01:19:23 1999 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.25 1999/03/26 22:36:02 bgrayson Exp $
+#      $NetBSD: Makefile,v 1.26 1999/09/12 01:19:23 chs Exp $
 #      @(#)Makefile    8.1 (Berkeley) 6/2/93
 
 PROG=          ps
@@ -11,8 +11,3 @@
 CWARNFLAGS+=   -Wno-format-y2k
 
 .include <bsd.prog.mk>
-
-# XXX
-.if defined(PMAP_NEW)
-CPPFLAGS+=      -DPMAP_NEW
-.endif
diff -r 5a3e50b79ad1 -r 026b2ec96777 lib/libkvm/Makefile
--- a/lib/libkvm/Makefile       Sun Sep 12 01:16:55 1999 +0000
+++ b/lib/libkvm/Makefile       Sun Sep 12 01:19:23 1999 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.29 1999/03/24 05:50:50 mrg Exp $
+#      $NetBSD: Makefile,v 1.30 1999/09/12 01:19:24 chs Exp $
 #      from: @(#)Makefile      8.1 (Berkeley) 6/4/93
 
 LIB=   kvm
@@ -32,8 +32,3 @@
 MLINKS+=kvm_dump.3 kvm_dump_inval.3
 
 .include <bsd.lib.mk>
-
-# XXX
-.if defined(PMAP_NEW)
-CPPFLAGS+=      -DPMAP_NEW
-.endif
diff -r 5a3e50b79ad1 -r 026b2ec96777 libexec/rpc.rstatd/Makefile
--- a/libexec/rpc.rstatd/Makefile       Sun Sep 12 01:16:55 1999 +0000
+++ b/libexec/rpc.rstatd/Makefile       Sun Sep 12 01:19:23 1999 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.16 1999/03/24 05:50:50 mrg Exp $
+#      $NetBSD: Makefile,v 1.17 1999/09/12 01:19:24 chs Exp $
 
 PROG = rpc.rstatd
 .PATH: ${.CURDIR}/../../usr.bin/vmstat
@@ -12,8 +12,3 @@
 LDADD= -lrpcsvc -lkvm
 
 .include <bsd.prog.mk>
-
-# XXX
-.if defined(PMAP_NEW)
-CPPFLAGS+=      -DPMAP_NEW
-.endif
diff -r 5a3e50b79ad1 -r 026b2ec96777 share/mk/bsd.own.mk
--- a/share/mk/bsd.own.mk       Sun Sep 12 01:16:55 1999 +0000
+++ b/share/mk/bsd.own.mk       Sun Sep 12 01:19:23 1999 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.own.mk,v 1.126 1999/08/21 06:16:21 simonb Exp $
+#      $NetBSD: bsd.own.mk,v 1.127 1999/09/12 01:19:25 chs Exp $
 
 .if !defined(_BSD_OWN_MK_)
 _BSD_OWN_MK_=1
@@ -80,21 +80,13 @@
 # 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.
+# XXX The next one is temporary until the transition to UVM is complete.
 
 # Systems on which UVM is the standard VM system.
 .if ${MACHINE} != "pica"
 UVM?=          yes
 .endif
 
-# Systems that use UVM's new pmap interface.
-.if ${MACHINE} == "alpha" || \
-    ${MACHINE} == "i386" || \
-    ${MACHINE} == "pc532" || \
-    ${MACHINE} == "vax"
-PMAP_NEW?=     yes
-.endif
-
 # The sparc64 port is incomplete.
 .if ${MACHINE_ARCH} == "sparc64"
 NOPROFILE=1
diff -r 5a3e50b79ad1 -r 026b2ec96777 usr.bin/fstat/Makefile
--- a/usr.bin/fstat/Makefile    Sun Sep 12 01:16:55 1999 +0000
+++ b/usr.bin/fstat/Makefile    Sun Sep 12 01:19:23 1999 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.13 1999/08/02 17:39:13 jdolecek Exp $
+#      $NetBSD: Makefile,v 1.14 1999/09/12 01:19:25 chs Exp $
 #      from: @(#)Makefile      8.1 (Berkeley) 6/6/93
 
 PROG=  fstat
@@ -9,8 +9,3 @@
 BINMODE=2555
 
 .include <bsd.prog.mk>
-
-# XXX
-.if defined(PMAP_NEW)
-CPPFLAGS+=      -DPMAP_NEW
-.endif
diff -r 5a3e50b79ad1 -r 026b2ec96777 usr.bin/systat/Makefile
--- a/usr.bin/systat/Makefile   Sun Sep 12 01:16:55 1999 +0000
+++ b/usr.bin/systat/Makefile   Sun Sep 12 01:19:23 1999 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.17 1999/05/30 20:26:20 ad Exp $
+#      $NetBSD: Makefile,v 1.18 1999/09/12 01:19:25 chs Exp $
 #      @(#)Makefile    8.1 (Berkeley) 6/6/93
 
 PROG=  systat
@@ -18,8 +18,3 @@
 MLINKS+=systat.1 sysstat.1
 
 .include <bsd.prog.mk>
-
-# XXX
-.if defined(PMAP_NEW)
-CPPFLAGS+=      -DPMAP_NEW
-.endif
diff -r 5a3e50b79ad1 -r 026b2ec96777 usr.bin/vmstat/Makefile
--- a/usr.bin/vmstat/Makefile   Sun Sep 12 01:16:55 1999 +0000
+++ b/usr.bin/vmstat/Makefile   Sun Sep 12 01:19:23 1999 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.18 1999/03/24 05:51:32 mrg Exp $
+#      $NetBSD: Makefile,v 1.19 1999/09/12 01:19:26 chs Exp $
 #      @(#)Makefile    8.1 (Berkeley) 6/6/93
 
 PROG=  vmstat
@@ -11,8 +11,3 @@
 BINMODE=2555
 
 .include <bsd.prog.mk>
-
-# XXX
-.if defined(PMAP_NEW)
-CPPFLAGS+=      -DPMAP_NEW
-.endif
diff -r 5a3e50b79ad1 -r 026b2ec96777 usr.bin/w/Makefile
--- a/usr.bin/w/Makefile        Sun Sep 12 01:16:55 1999 +0000
+++ b/usr.bin/w/Makefile        Sun Sep 12 01:19:23 1999 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.13 1999/03/24 05:51:32 mrg Exp $
+#      $NetBSD: Makefile,v 1.14 1999/09/12 01:19:26 chs Exp $
 #      @(#)Makefile    8.1 (Berkeley) 6/6/93
 
 PROG=  w
@@ -13,8 +13,3 @@
 .PATH: ${.CURDIR}/../../bin/ps
 
 .include <bsd.prog.mk>
-
-# XXX
-.if defined(PMAP_NEW)
-CPPFLAGS+=      -DPMAP_NEW
-.endif
diff -r 5a3e50b79ad1 -r 026b2ec96777 usr.sbin/pstat/Makefile
--- a/usr.sbin/pstat/Makefile   Sun Sep 12 01:16:55 1999 +0000
+++ b/usr.sbin/pstat/Makefile   Sun Sep 12 01:19:23 1999 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.10 1998/02/18 03:56:11 perry Exp $
+#      $NetBSD: Makefile,v 1.11 1999/09/12 01:19:26 chs Exp $
 #      from: @(#)Makefile      8.1 (Berkeley) 6/6/93
 
 SRCS=  pstat.c swaplist.c
@@ -14,11 +14,3 @@
 .PATH: ${.CURDIR}/../../sbin/swapctl
 
 .include <bsd.prog.mk>
-
-# XXX
-.if defined(UVM)
-CPPFLAGS+=      -DUVM
-.endif
-.if defined(PMAP_NEW)
-CPPFLAGS+=      -DPMAP_NEW
-.endif



Home | Main Index | Thread Index | Old Index