CVS commit: src/etc/mtree

2024-04-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Apr  8 12:38:59 UTC 2024

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
kre says this should be obsolete


To generate a diff of this commit:
cvs rdiff -u -r1.258 -r1.259 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2024-04-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Apr  8 12:38:59 UTC 2024

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
kre says this should be obsolete


To generate a diff of this commit:
cvs rdiff -u -r1.258 -r1.259 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.258 src/etc/mtree/NetBSD.dist.base:1.259
--- src/etc/mtree/NetBSD.dist.base:1.258	Mon Apr  8 08:32:15 2024
+++ src/etc/mtree/NetBSD.dist.base	Mon Apr  8 08:38:59 2024
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.258 2024/04/08 12:32:15 christos Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.259 2024/04/08 12:38:59 christos Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -1451,7 +1451,6 @@
 ./var/preserve
 ./var/quotas			gname=operator mode=0750
 ./var/run
-./var/run/named			mode=0775 uname=named gname=named
 ./var/rwho			uname=_rwhod gname=_rwhod
 ./var/shm			mode=01777
 ./var/spool



CVS commit: src/etc/mtree

2024-04-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Apr  8 12:32:16 UTC 2024

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
put back /var/run/named


To generate a diff of this commit:
cvs rdiff -u -r1.257 -r1.258 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.257 src/etc/mtree/NetBSD.dist.base:1.258
--- src/etc/mtree/NetBSD.dist.base:1.257	Thu Apr  4 21:15:59 2024
+++ src/etc/mtree/NetBSD.dist.base	Mon Apr  8 08:32:15 2024
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.257 2024/04/05 01:15:59 christos Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.258 2024/04/08 12:32:15 christos Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -1451,6 +1451,7 @@
 ./var/preserve
 ./var/quotas			gname=operator mode=0750
 ./var/run
+./var/run/named			mode=0775 uname=named gname=named
 ./var/rwho			uname=_rwhod gname=_rwhod
 ./var/shm			mode=01777
 ./var/spool



CVS commit: src/etc/mtree

2024-04-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Apr  8 12:32:16 UTC 2024

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
put back /var/run/named


To generate a diff of this commit:
cvs rdiff -u -r1.257 -r1.258 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2024-01-27 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Sat Jan 27 21:01:08 UTC 2024

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
NetBSD.dist.base: Fix permissions on /dev/pts.

No reason to write to this -- it's expected to have ptyfs mounted,
and ptyfs doesn't allow changing the directory.  So use 0555
(-r-xr-xr-x) instead of 0755 (-rwxr-xr-x), like it is by default with
ptyfs mounted.

PR misc/57877


To generate a diff of this commit:
cvs rdiff -u -r1.253 -r1.254 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.253 src/etc/mtree/NetBSD.dist.base:1.254
--- src/etc/mtree/NetBSD.dist.base:1.253	Sun Sep  3 18:31:01 2023
+++ src/etc/mtree/NetBSD.dist.base	Sat Jan 27 21:01:08 2024
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.253 2023/09/03 18:31:01 riastradh Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.254 2024/01/27 21:01:08 riastradh Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -13,7 +13,7 @@
 ./dev
 ./dev/altq
 ./dev/fd
-./dev/pts
+./dev/pts			mode=0555
 ./etc
 ./etc/X11
 ./etc/X11/fs



CVS commit: src/etc/mtree

2024-01-27 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Sat Jan 27 21:01:08 UTC 2024

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
NetBSD.dist.base: Fix permissions on /dev/pts.

No reason to write to this -- it's expected to have ptyfs mounted,
and ptyfs doesn't allow changing the directory.  So use 0555
(-r-xr-xr-x) instead of 0755 (-rwxr-xr-x), like it is by default with
ptyfs mounted.

PR misc/57877


To generate a diff of this commit:
cvs rdiff -u -r1.253 -r1.254 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2023-09-02 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Sat Sep  2 17:39:43 UTC 2023

Modified Files:
src/etc/mtree: special

Log Message:
etc/mtree/special: Fix spaces/tabs.

No functional change intended.


To generate a diff of this commit:
cvs rdiff -u -r1.177 -r1.178 src/etc/mtree/special

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2023-09-02 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Sat Sep  2 17:39:43 UTC 2023

Modified Files:
src/etc/mtree: special

Log Message:
etc/mtree/special: Fix spaces/tabs.

No functional change intended.


To generate a diff of this commit:
cvs rdiff -u -r1.177 -r1.178 src/etc/mtree/special

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/special
diff -u src/etc/mtree/special:1.177 src/etc/mtree/special:1.178
--- src/etc/mtree/special:1.177	Wed Aug 30 08:09:38 2023
+++ src/etc/mtree/special	Sat Sep  2 17:39:43 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: special,v 1.177 2023/08/30 08:09:38 martin Exp $
+#	$NetBSD: special,v 1.178 2023/09/02 17:39:43 riastradh Exp $
 #	@(#)special	8.2 (Berkeley) 1/23/94
 #
 # This file may be overwritten on upgrades.
@@ -134,7 +134,7 @@
 ./etc/nsswitch.conf		type=file mode=0644
 ./etc/ntp.conf			type=file mode=0644 optional
 ./etc/openssl			type=dir  mode=0755
-./etc/openssl/certs.conftype=file mode=0644
+./etc/openssl/certs.conf	type=file mode=0644
 ./etc/pam.conf			type=file mode=0644 optional
 ./etc/pam.d			type=dir  mode=0755
 ./etc/pam.d/display_manager	type=file mode=0644



CVS commit: src/etc/mtree

2023-08-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Aug 30 08:09:38 UTC 2023

Modified Files:
src/etc/mtree: special

Log Message:
Now that we have /etc/openssl/certs.conf mentioned here, also
list /etc/openssl.


To generate a diff of this commit:
cvs rdiff -u -r1.176 -r1.177 src/etc/mtree/special

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/special
diff -u src/etc/mtree/special:1.176 src/etc/mtree/special:1.177
--- src/etc/mtree/special:1.176	Mon Aug 28 23:57:24 2023
+++ src/etc/mtree/special	Wed Aug 30 08:09:38 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: special,v 1.176 2023/08/28 23:57:24 riastradh Exp $
+#	$NetBSD: special,v 1.177 2023/08/30 08:09:38 martin Exp $
 #	@(#)special	8.2 (Berkeley) 1/23/94
 #
 # This file may be overwritten on upgrades.
@@ -133,6 +133,7 @@
 ./etc/npf.conf			type=file mode=0644 optional
 ./etc/nsswitch.conf		type=file mode=0644
 ./etc/ntp.conf			type=file mode=0644 optional
+./etc/openssl			type=dir  mode=0755
 ./etc/openssl/certs.conftype=file mode=0644
 ./etc/pam.conf			type=file mode=0644 optional
 ./etc/pam.d			type=dir  mode=0755



CVS commit: src/etc/mtree

2023-08-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Aug 30 08:09:38 UTC 2023

Modified Files:
src/etc/mtree: special

Log Message:
Now that we have /etc/openssl/certs.conf mentioned here, also
list /etc/openssl.


To generate a diff of this commit:
cvs rdiff -u -r1.176 -r1.177 src/etc/mtree/special

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2023-08-20 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Sun Aug 20 10:27:11 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
etc/mtree/NetBSD.dist.tests: Update for new compat linux tests.


To generate a diff of this commit:
cvs rdiff -u -r1.198 -r1.199 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.tests
diff -u src/etc/mtree/NetBSD.dist.tests:1.198 src/etc/mtree/NetBSD.dist.tests:1.199
--- src/etc/mtree/NetBSD.dist.tests:1.198	Sun Jan 15 23:18:05 2023
+++ src/etc/mtree/NetBSD.dist.tests	Sun Aug 20 10:27:11 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.tests,v 1.198 2023/01/15 23:18:05 rillig Exp $
+#	$NetBSD: NetBSD.dist.tests,v 1.199 2023/08/20 10:27:11 riastradh Exp $
 
 ./usr/libdata/debug/usr/tests
 ./usr/libdata/debug/usr/tests/atf
@@ -11,6 +11,8 @@
 ./usr/libdata/debug/usr/tests/atf/tools
 ./usr/libdata/debug/usr/tests/bin
 ./usr/libdata/debug/usr/tests/bin/df
+./usr/libdata/debug/usr/tests/compat
+./usr/libdata/debug/usr/tests/compat/linux
 ./usr/libdata/debug/usr/tests/crypto
 ./usr/libdata/debug/usr/tests/crypto/libcrypto
 ./usr/libdata/debug/usr/tests/crypto/opencrypto
@@ -210,6 +212,8 @@
 ./usr/tests/bin/sh/dotcmd/out
 ./usr/tests/bin/sleep
 ./usr/tests/bin/tar
+./usr/tests/compat
+./usr/tests/compat/linux
 ./usr/tests/crypto
 ./usr/tests/crypto/libcrypto
 ./usr/tests/crypto/opencrypto



CVS commit: src/etc/mtree

2023-08-20 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Sun Aug 20 10:27:11 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
etc/mtree/NetBSD.dist.tests: Update for new compat linux tests.


To generate a diff of this commit:
cvs rdiff -u -r1.198 -r1.199 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2023-08-01 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Tue Aug  1 06:46:52 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
add gcc 12 subdirs, remove gcc 9.


To generate a diff of this commit:
cvs rdiff -u -r1.250 -r1.251 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.250 src/etc/mtree/NetBSD.dist.base:1.251
--- src/etc/mtree/NetBSD.dist.base:1.250	Fri May 26 22:26:11 2023
+++ src/etc/mtree/NetBSD.dist.base	Tue Aug  1 06:46:52 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.250 2023/05/26 22:26:11 riastradh Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.251 2023/08/01 06:46:52 mrg Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -283,10 +283,10 @@
 ./usr/include/g++/tr1
 ./usr/include/g++/tr1_impl
 ./usr/include/g++/tr2
-./usr/include/gcc-9
-./usr/include/gcc-9/sanitizer
 ./usr/include/gcc-10
 ./usr/include/gcc-10/sanitizer
+./usr/include/gcc-12
+./usr/include/gcc-12/sanitizer
 ./usr/include/gssapi
 ./usr/include/isofs
 ./usr/include/isofs/cd9660



CVS commit: src/etc/mtree

2023-08-01 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Tue Aug  1 06:46:52 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
add gcc 12 subdirs, remove gcc 9.


To generate a diff of this commit:
cvs rdiff -u -r1.250 -r1.251 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2023-05-16 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue May 16 18:57:49 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.dist.compat.in

Log Message:
Add the engines directory too (hannken)
Note that we don't install engines now, but we could.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/etc/mtree/NetBSD.dist.compat.in

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.compat.in
diff -u src/etc/mtree/NetBSD.dist.compat.in:1.3 src/etc/mtree/NetBSD.dist.compat.in:1.4
--- src/etc/mtree/NetBSD.dist.compat.in:1.3	Sun May 14 07:04:57 2023
+++ src/etc/mtree/NetBSD.dist.compat.in	Tue May 16 14:57:49 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.compat.in,v 1.3 2023/05/14 11:04:57 riastradh Exp $
+#	$NetBSD: NetBSD.dist.compat.in,v 1.4 2023/05/16 18:57:49 christos Exp $
 
 ./lib/@ARCH_SUBDIR@
 ./lib/@ARCH_SUBDIR@/npf
@@ -7,6 +7,7 @@
 ./usr/lib/@ARCH_SUBDIR@/lua
 ./usr/lib/@ARCH_SUBDIR@/lua/5.4
 ./usr/lib/@ARCH_SUBDIR@/openssl
+./usr/lib/@ARCH_SUBDIR@/openssl/engines
 ./usr/lib/@ARCH_SUBDIR@/openssl/modules
 ./usr/lib/@ARCH_SUBDIR@/security
 ./usr/libdata/debug/lib/@ARCH_SUBDIR@



CVS commit: src/etc/mtree

2023-05-16 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue May 16 18:57:49 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.dist.compat.in

Log Message:
Add the engines directory too (hannken)
Note that we don't install engines now, but we could.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/etc/mtree/NetBSD.dist.compat.in

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2023-05-16 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue May 16 13:21:59 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.compat.mips64 NetBSD.compat.powerpc64
NetBSD.compat.riscv64

Log Message:
OpenSSL entries are handled by NetBSD.dist.compat


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/etc/mtree/NetBSD.compat.mips64 \
src/etc/mtree/NetBSD.compat.powerpc64 src/etc/mtree/NetBSD.compat.riscv64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.compat.mips64
diff -u src/etc/mtree/NetBSD.compat.mips64:1.2 src/etc/mtree/NetBSD.compat.mips64:1.3
--- src/etc/mtree/NetBSD.compat.mips64:1.2	Mon May 15 15:02:34 2023
+++ src/etc/mtree/NetBSD.compat.mips64	Tue May 16 09:21:59 2023
@@ -1,9 +1,5 @@
-#	$NetBSD: NetBSD.compat.mips64,v 1.2 2023/05/15 19:02:34 christos Exp $
+#	$NetBSD: NetBSD.compat.mips64,v 1.3 2023/05/16 13:21:59 christos Exp $
 
 ./usr/include/g++/bits/mips64
 ./usr/include/g++/bits/mips32
 ./usr/include/g++/bits/mipso32
-./usr/lib/n32/openssl
-./usr/lib/n32/openssl/modules
-./usr/lib/o32/openssl
-./usr/lib/o32/openssl/modules
Index: src/etc/mtree/NetBSD.compat.powerpc64
diff -u src/etc/mtree/NetBSD.compat.powerpc64:1.2 src/etc/mtree/NetBSD.compat.powerpc64:1.3
--- src/etc/mtree/NetBSD.compat.powerpc64:1.2	Mon May 15 15:03:23 2023
+++ src/etc/mtree/NetBSD.compat.powerpc64	Tue May 16 09:21:59 2023
@@ -1,6 +1,4 @@
-#	$NetBSD: NetBSD.compat.powerpc64,v 1.2 2023/05/15 19:03:23 christos Exp $
+#	$NetBSD: NetBSD.compat.powerpc64,v 1.3 2023/05/16 13:21:59 christos Exp $
 
 ./usr/include/g++/bits/powerpc
 ./usr/include/g++/bits/powerpc64
-./usr/lib/powerpc/openssl
-./usr/lib/powerpc/openssl/modules
Index: src/etc/mtree/NetBSD.compat.riscv64
diff -u src/etc/mtree/NetBSD.compat.riscv64:1.2 src/etc/mtree/NetBSD.compat.riscv64:1.3
--- src/etc/mtree/NetBSD.compat.riscv64:1.2	Mon May 15 17:13:07 2023
+++ src/etc/mtree/NetBSD.compat.riscv64	Tue May 16 09:21:59 2023
@@ -1,7 +1,4 @@
-# $NetBSD: NetBSD.compat.riscv64,v 1.2 2023/05/15 21:13:07 christos Exp $
+# $NetBSD: NetBSD.compat.riscv64,v 1.3 2023/05/16 13:21:59 christos Exp $
 
 ./usr/include/g++/bits/riscv32
 ./usr/include/g++/bits/riscv64
-./usr/lib/rv32/openssl
-./usr/lib/rv32/openssl/engines
-./usr/lib/rv32/openssl/modules



CVS commit: src/etc/mtree

2023-05-16 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue May 16 13:21:59 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.compat.mips64 NetBSD.compat.powerpc64
NetBSD.compat.riscv64

Log Message:
OpenSSL entries are handled by NetBSD.dist.compat


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/etc/mtree/NetBSD.compat.mips64 \
src/etc/mtree/NetBSD.compat.powerpc64 src/etc/mtree/NetBSD.compat.riscv64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2023-05-16 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue May 16 13:20:38 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.dist.sparc64 NetBSD.dist.x86_64

Log Message:
OpenSSL entries are handled by NetBSD.dist.compat


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/etc/mtree/NetBSD.dist.sparc64
cvs rdiff -u -r1.18 -r1.19 src/etc/mtree/NetBSD.dist.x86_64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.sparc64
diff -u src/etc/mtree/NetBSD.dist.sparc64:1.15 src/etc/mtree/NetBSD.dist.sparc64:1.16
--- src/etc/mtree/NetBSD.dist.sparc64:1.15	Thu May 11 13:57:14 2023
+++ src/etc/mtree/NetBSD.dist.sparc64	Tue May 16 09:20:38 2023
@@ -1,7 +1,3 @@
-#	$NetBSD: NetBSD.dist.sparc64,v 1.15 2023/05/11 17:57:14 christos Exp $
+#	$NetBSD: NetBSD.dist.sparc64,v 1.16 2023/05/16 13:20:38 christos Exp $
 
 ./usr/include/sparc
-./usr/lib/sparc
-./usr/lib/sparc/openssl
-./usr/lib/sparc/openssl/modules
-./usr/lib/sparc/openssl/engines

Index: src/etc/mtree/NetBSD.dist.x86_64
diff -u src/etc/mtree/NetBSD.dist.x86_64:1.18 src/etc/mtree/NetBSD.dist.x86_64:1.19
--- src/etc/mtree/NetBSD.dist.x86_64:1.18	Thu May 11 07:58:55 2023
+++ src/etc/mtree/NetBSD.dist.x86_64	Tue May 16 09:20:38 2023
@@ -1,11 +1,7 @@
-#	$NetBSD: NetBSD.dist.x86_64,v 1.18 2023/05/11 11:58:55 christos Exp $
+#	$NetBSD: NetBSD.dist.x86_64,v 1.19 2023/05/16 13:20:38 christos Exp $
 
 ./usr/include/dev/nvmm
 ./usr/include/dev/nvmm/x86
 ./usr/include/i386
 ./usr/include/x86
 ./usr/include/xen
-./usr/lib/i386
-./usr/lib/i386/openssl
-./usr/lib/i386/openssl/modules
-./usr/lib/i386/openssl/engines



CVS commit: src/etc/mtree

2023-05-16 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue May 16 13:20:38 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.dist.sparc64 NetBSD.dist.x86_64

Log Message:
OpenSSL entries are handled by NetBSD.dist.compat


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/etc/mtree/NetBSD.dist.sparc64
cvs rdiff -u -r1.18 -r1.19 src/etc/mtree/NetBSD.dist.x86_64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2023-05-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon May 15 21:13:07 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.compat.riscv64

Log Message:
add more OpenSSL-3.x


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/etc/mtree/NetBSD.compat.riscv64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.compat.riscv64
diff -u src/etc/mtree/NetBSD.compat.riscv64:1.1 src/etc/mtree/NetBSD.compat.riscv64:1.2
--- src/etc/mtree/NetBSD.compat.riscv64:1.1	Sat Feb  9 16:43:23 2019
+++ src/etc/mtree/NetBSD.compat.riscv64	Mon May 15 17:13:07 2023
@@ -1,4 +1,7 @@
-# $NetBSD: NetBSD.compat.riscv64,v 1.1 2019/02/09 21:43:23 mrg Exp $
+# $NetBSD: NetBSD.compat.riscv64,v 1.2 2023/05/15 21:13:07 christos Exp $
 
 ./usr/include/g++/bits/riscv32
 ./usr/include/g++/bits/riscv64
+./usr/lib/rv32/openssl
+./usr/lib/rv32/openssl/engines
+./usr/lib/rv32/openssl/modules



CVS commit: src/etc/mtree

2023-05-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon May 15 21:13:07 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.compat.riscv64

Log Message:
add more OpenSSL-3.x


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/etc/mtree/NetBSD.compat.riscv64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2023-05-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon May 15 19:03:23 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.compat.powerpc64

Log Message:
Add openssl files


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/etc/mtree/NetBSD.compat.powerpc64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2023-05-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon May 15 19:03:23 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.compat.powerpc64

Log Message:
Add openssl files


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/etc/mtree/NetBSD.compat.powerpc64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.compat.powerpc64
diff -u src/etc/mtree/NetBSD.compat.powerpc64:1.1 src/etc/mtree/NetBSD.compat.powerpc64:1.2
--- src/etc/mtree/NetBSD.compat.powerpc64:1.1	Sat Feb  9 16:43:23 2019
+++ src/etc/mtree/NetBSD.compat.powerpc64	Mon May 15 15:03:23 2023
@@ -1,4 +1,6 @@
-#	$NetBSD: NetBSD.compat.powerpc64,v 1.1 2019/02/09 21:43:23 mrg Exp $
+#	$NetBSD: NetBSD.compat.powerpc64,v 1.2 2023/05/15 19:03:23 christos Exp $
 
 ./usr/include/g++/bits/powerpc
 ./usr/include/g++/bits/powerpc64
+./usr/lib/powerpc/openssl
+./usr/lib/powerpc/openssl/modules



CVS commit: src/etc/mtree

2023-05-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon May 15 19:02:34 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.compat.mips64

Log Message:
add openssl files


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/etc/mtree/NetBSD.compat.mips64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.compat.mips64
diff -u src/etc/mtree/NetBSD.compat.mips64:1.1 src/etc/mtree/NetBSD.compat.mips64:1.2
--- src/etc/mtree/NetBSD.compat.mips64:1.1	Sun Feb 17 00:29:08 2019
+++ src/etc/mtree/NetBSD.compat.mips64	Mon May 15 15:02:34 2023
@@ -1,5 +1,9 @@
-#	$NetBSD: NetBSD.compat.mips64,v 1.1 2019/02/17 05:29:08 mrg Exp $
+#	$NetBSD: NetBSD.compat.mips64,v 1.2 2023/05/15 19:02:34 christos Exp $
 
 ./usr/include/g++/bits/mips64
 ./usr/include/g++/bits/mips32
 ./usr/include/g++/bits/mipso32
+./usr/lib/n32/openssl
+./usr/lib/n32/openssl/modules
+./usr/lib/o32/openssl
+./usr/lib/o32/openssl/modules



CVS commit: src/etc/mtree

2023-05-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon May 15 19:02:34 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.compat.mips64

Log Message:
add openssl files


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/etc/mtree/NetBSD.compat.mips64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2023-05-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun May 14 17:21:53 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.dist.aarch64

Log Message:
undo previous


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/etc/mtree/NetBSD.dist.aarch64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.aarch64
diff -u src/etc/mtree/NetBSD.dist.aarch64:1.12 src/etc/mtree/NetBSD.dist.aarch64:1.13
--- src/etc/mtree/NetBSD.dist.aarch64:1.12	Sun May 14 08:45:56 2023
+++ src/etc/mtree/NetBSD.dist.aarch64	Sun May 14 13:21:53 2023
@@ -1,6 +1,4 @@
-#	$NetBSD: NetBSD.dist.aarch64,v 1.12 2023/05/14 12:45:56 christos Exp $
+#	$NetBSD: NetBSD.dist.aarch64,v 1.13 2023/05/14 17:21:53 christos Exp $
 
-./lib/eabi
 ./usr/include/aarch64
 ./usr/include/arm
-./usr/lib/eabi



CVS commit: src/etc/mtree

2023-05-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun May 14 17:21:53 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.dist.aarch64

Log Message:
undo previous


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/etc/mtree/NetBSD.dist.aarch64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2023-05-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun May 14 12:45:56 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.dist.aarch64

Log Message:
try to fix the build.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/etc/mtree/NetBSD.dist.aarch64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.aarch64
diff -u src/etc/mtree/NetBSD.dist.aarch64:1.11 src/etc/mtree/NetBSD.dist.aarch64:1.12
--- src/etc/mtree/NetBSD.dist.aarch64:1.11	Sun May 14 03:07:23 2023
+++ src/etc/mtree/NetBSD.dist.aarch64	Sun May 14 08:45:56 2023
@@ -1,4 +1,6 @@
-#	$NetBSD: NetBSD.dist.aarch64,v 1.11 2023/05/14 07:07:23 mrg Exp $
+#	$NetBSD: NetBSD.dist.aarch64,v 1.12 2023/05/14 12:45:56 christos Exp $
 
+./lib/eabi
 ./usr/include/aarch64
 ./usr/include/arm
+./usr/lib/eabi



CVS commit: src/etc/mtree

2023-05-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun May 14 12:45:56 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.dist.aarch64

Log Message:
try to fix the build.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/etc/mtree/NetBSD.dist.aarch64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2023-05-11 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu May 11 11:58:56 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.dist.x86_64

Log Message:
Add missing path for MKCOMPAT=no from Adam


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/etc/mtree/NetBSD.dist.x86_64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.x86_64
diff -u src/etc/mtree/NetBSD.dist.x86_64:1.17 src/etc/mtree/NetBSD.dist.x86_64:1.18
--- src/etc/mtree/NetBSD.dist.x86_64:1.17	Wed May 10 11:52:50 2023
+++ src/etc/mtree/NetBSD.dist.x86_64	Thu May 11 07:58:55 2023
@@ -1,10 +1,11 @@
-#	$NetBSD: NetBSD.dist.x86_64,v 1.17 2023/05/10 15:52:50 christos Exp $
+#	$NetBSD: NetBSD.dist.x86_64,v 1.18 2023/05/11 11:58:55 christos Exp $
 
 ./usr/include/dev/nvmm
 ./usr/include/dev/nvmm/x86
 ./usr/include/i386
 ./usr/include/x86
 ./usr/include/xen
+./usr/lib/i386
 ./usr/lib/i386/openssl
 ./usr/lib/i386/openssl/modules
 ./usr/lib/i386/openssl/engines



CVS commit: src/etc/mtree

2023-05-11 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu May 11 11:58:56 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.dist.x86_64

Log Message:
Add missing path for MKCOMPAT=no from Adam


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/etc/mtree/NetBSD.dist.x86_64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2023-05-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed May 10 15:52:50 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.dist.base NetBSD.dist.x86_64

Log Message:
new openssl directories


To generate a diff of this commit:
cvs rdiff -u -r1.247 -r1.248 src/etc/mtree/NetBSD.dist.base
cvs rdiff -u -r1.16 -r1.17 src/etc/mtree/NetBSD.dist.x86_64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.247 src/etc/mtree/NetBSD.dist.base:1.248
--- src/etc/mtree/NetBSD.dist.base:1.247	Sun Apr 16 16:46:17 2023
+++ src/etc/mtree/NetBSD.dist.base	Wed May 10 11:52:50 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.247 2023/04/16 20:46:17 nikita Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.248 2023/05/10 15:52:50 christos Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -355,6 +355,9 @@
 ./usr/lib/lua
 ./usr/lib/lua/5.4
 ./usr/lib/named
+./usr/lib/openssl
+./usr/lib/openssl/engines
+./usr/lib/openssl/modules
 ./usr/lib/pkgconfig
 ./usr/lib/postfix
 ./usr/lib/security

Index: src/etc/mtree/NetBSD.dist.x86_64
diff -u src/etc/mtree/NetBSD.dist.x86_64:1.16 src/etc/mtree/NetBSD.dist.x86_64:1.17
--- src/etc/mtree/NetBSD.dist.x86_64:1.16	Sun May 15 17:41:56 2022
+++ src/etc/mtree/NetBSD.dist.x86_64	Wed May 10 11:52:50 2023
@@ -1,7 +1,10 @@
-#	$NetBSD: NetBSD.dist.x86_64,v 1.16 2022/05/15 21:41:56 mrg Exp $
+#	$NetBSD: NetBSD.dist.x86_64,v 1.17 2023/05/10 15:52:50 christos Exp $
 
 ./usr/include/dev/nvmm
 ./usr/include/dev/nvmm/x86
 ./usr/include/i386
 ./usr/include/x86
 ./usr/include/xen
+./usr/lib/i386/openssl
+./usr/lib/i386/openssl/modules
+./usr/lib/i386/openssl/engines



CVS commit: src/etc/mtree

2023-05-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed May 10 15:52:50 UTC 2023

Modified Files:
src/etc/mtree: NetBSD.dist.base NetBSD.dist.x86_64

Log Message:
new openssl directories


To generate a diff of this commit:
cvs rdiff -u -r1.247 -r1.248 src/etc/mtree/NetBSD.dist.base
cvs rdiff -u -r1.16 -r1.17 src/etc/mtree/NetBSD.dist.x86_64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2022-05-15 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun May 15 21:41:56 UTC 2022

Modified Files:
src/etc/mtree: NetBSD.dist.aarch64 NetBSD.dist.base NetBSD.dist.i386
NetBSD.dist.x86_64

Log Message:
create ./usr/libdata/firmware/radeon same as the non-/usr version

should fix builds for non x86/arm64.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/etc/mtree/NetBSD.dist.aarch64
cvs rdiff -u -r1.242 -r1.243 src/etc/mtree/NetBSD.dist.base
cvs rdiff -u -r1.3 -r1.4 src/etc/mtree/NetBSD.dist.i386
cvs rdiff -u -r1.15 -r1.16 src/etc/mtree/NetBSD.dist.x86_64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.aarch64
diff -u src/etc/mtree/NetBSD.dist.aarch64:1.8 src/etc/mtree/NetBSD.dist.aarch64:1.9
--- src/etc/mtree/NetBSD.dist.aarch64:1.8	Sun May 15 00:24:14 2022
+++ src/etc/mtree/NetBSD.dist.aarch64	Sun May 15 21:41:56 2022
@@ -1,5 +1,4 @@
-#	$NetBSD: NetBSD.dist.aarch64,v 1.8 2022/05/15 00:24:14 mrg Exp $
+#	$NetBSD: NetBSD.dist.aarch64,v 1.9 2022/05/15 21:41:56 mrg Exp $
 
 ./usr/include/aarch64
 ./usr/include/arm
-./usr/libdata/firmware/radeon

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.242 src/etc/mtree/NetBSD.dist.base:1.243
--- src/etc/mtree/NetBSD.dist.base:1.242	Sun Mar  6 17:51:42 2022
+++ src/etc/mtree/NetBSD.dist.base	Sun May 15 21:41:56 2022
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.242 2022/03/06 17:51:42 christos Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.243 2022/05/15 21:41:56 mrg Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -380,6 +380,7 @@
 ./usr/libdata/debug/usr/sbin
 ./usr/libdata/firmware
 ./usr/libdata/firmware/bcm43xx
+./usr/libdata/firmware/radeon
 ./usr/libdata/ldscripts
 ./usr/libdata/lint
 ./usr/libdata/lint/strict-bool

Index: src/etc/mtree/NetBSD.dist.i386
diff -u src/etc/mtree/NetBSD.dist.i386:1.3 src/etc/mtree/NetBSD.dist.i386:1.4
--- src/etc/mtree/NetBSD.dist.i386:1.3	Sun May 15 00:24:14 2022
+++ src/etc/mtree/NetBSD.dist.i386	Sun May 15 21:41:56 2022
@@ -1,5 +1,4 @@
-#	$NetBSD: NetBSD.dist.i386,v 1.3 2022/05/15 00:24:14 mrg Exp $
+#	$NetBSD: NetBSD.dist.i386,v 1.4 2022/05/15 21:41:56 mrg Exp $
 
 ./usr/include/x86
 ./usr/include/xen
-./usr/libdata/firmware/radeon

Index: src/etc/mtree/NetBSD.dist.x86_64
diff -u src/etc/mtree/NetBSD.dist.x86_64:1.15 src/etc/mtree/NetBSD.dist.x86_64:1.16
--- src/etc/mtree/NetBSD.dist.x86_64:1.15	Sun May 15 00:24:14 2022
+++ src/etc/mtree/NetBSD.dist.x86_64	Sun May 15 21:41:56 2022
@@ -1,8 +1,7 @@
-#	$NetBSD: NetBSD.dist.x86_64,v 1.15 2022/05/15 00:24:14 mrg Exp $
+#	$NetBSD: NetBSD.dist.x86_64,v 1.16 2022/05/15 21:41:56 mrg Exp $
 
 ./usr/include/dev/nvmm
 ./usr/include/dev/nvmm/x86
 ./usr/include/i386
 ./usr/include/x86
 ./usr/include/xen
-./usr/libdata/firmware/radeon



CVS commit: src/etc/mtree

2022-05-15 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun May 15 21:41:56 UTC 2022

Modified Files:
src/etc/mtree: NetBSD.dist.aarch64 NetBSD.dist.base NetBSD.dist.i386
NetBSD.dist.x86_64

Log Message:
create ./usr/libdata/firmware/radeon same as the non-/usr version

should fix builds for non x86/arm64.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/etc/mtree/NetBSD.dist.aarch64
cvs rdiff -u -r1.242 -r1.243 src/etc/mtree/NetBSD.dist.base
cvs rdiff -u -r1.3 -r1.4 src/etc/mtree/NetBSD.dist.i386
cvs rdiff -u -r1.15 -r1.16 src/etc/mtree/NetBSD.dist.x86_64

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2022-04-08 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Fri Apr  8 23:14:11 UTC 2022

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
etc: Sort NetBSD.dist.tests.


To generate a diff of this commit:
cvs rdiff -u -r1.188 -r1.189 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2022-04-08 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Fri Apr  8 23:14:11 UTC 2022

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
etc: Sort NetBSD.dist.tests.


To generate a diff of this commit:
cvs rdiff -u -r1.188 -r1.189 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.tests
diff -u src/etc/mtree/NetBSD.dist.tests:1.188 src/etc/mtree/NetBSD.dist.tests:1.189
--- src/etc/mtree/NetBSD.dist.tests:1.188	Sun Aug 29 09:54:18 2021
+++ src/etc/mtree/NetBSD.dist.tests	Fri Apr  8 23:14:10 2022
@@ -1,11 +1,11 @@
-#	$NetBSD: NetBSD.dist.tests,v 1.188 2021/08/29 09:54:18 christos Exp $
+#	$NetBSD: NetBSD.dist.tests,v 1.189 2022/04/08 23:14:10 riastradh Exp $
 
 ./usr/libdata/debug/usr/tests
 ./usr/libdata/debug/usr/tests/atf
 ./usr/libdata/debug/usr/tests/atf/atf-c
-./usr/libdata/debug/usr/tests/atf/atf-c/detail
 ./usr/libdata/debug/usr/tests/atf/atf-c++
 ./usr/libdata/debug/usr/tests/atf/atf-c++/detail
+./usr/libdata/debug/usr/tests/atf/atf-c/detail
 ./usr/libdata/debug/usr/tests/atf/formats
 ./usr/libdata/debug/usr/tests/atf/test-programs
 ./usr/libdata/debug/usr/tests/atf/tools
@@ -83,8 +83,8 @@
 ./usr/libdata/debug/usr/tests/lib/libc/gen/execve
 ./usr/libdata/debug/usr/tests/lib/libc/gen/posix_spawn
 ./usr/libdata/debug/usr/tests/lib/libc/hash
-./usr/libdata/debug/usr/tests/lib/libc/locale
 ./usr/libdata/debug/usr/tests/lib/libc/inet
+./usr/libdata/debug/usr/tests/lib/libc/locale
 ./usr/libdata/debug/usr/tests/lib/libc/misc
 ./usr/libdata/debug/usr/tests/lib/libc/net
 ./usr/libdata/debug/usr/tests/lib/libc/net/getaddrinfo
@@ -98,23 +98,21 @@
 ./usr/libdata/debug/usr/tests/lib/libc/string
 ./usr/libdata/debug/usr/tests/lib/libc/sys
 ./usr/libdata/debug/usr/tests/lib/libc/termios
+./usr/libdata/debug/usr/tests/lib/libc/time
 ./usr/libdata/debug/usr/tests/lib/libc/tls
 ./usr/libdata/debug/usr/tests/lib/libc/ttyio
-./usr/libdata/debug/usr/tests/lib/libc/time
 ./usr/libdata/debug/usr/tests/lib/libcrypt
 ./usr/libdata/debug/usr/tests/lib/libcurses
 ./usr/libdata/debug/usr/tests/lib/libdes
 ./usr/libdata/debug/usr/tests/lib/libevent
 ./usr/libdata/debug/usr/tests/lib/libexecinfo
-./usr/libdata/debug/usr/tests/lib/semaphore
-./usr/libdata/debug/usr/tests/lib/semaphore/pthread
 ./usr/libdata/debug/usr/tests/lib/libi386
 ./usr/libdata/debug/usr/tests/lib/liblutok
 ./usr/libdata/debug/usr/tests/lib/libm
 ./usr/libdata/debug/usr/tests/lib/libnvmm
 ./usr/libdata/debug/usr/tests/lib/libobjc
-./usr/libdata/debug/usr/tests/lib/libposix
 ./usr/libdata/debug/usr/tests/lib/libossaudio
+./usr/libdata/debug/usr/tests/lib/libposix
 ./usr/libdata/debug/usr/tests/lib/libposix/bsd
 ./usr/libdata/debug/usr/tests/lib/libposix/posix1
 ./usr/libdata/debug/usr/tests/lib/libposix/posix2
@@ -132,6 +130,8 @@
 ./usr/libdata/debug/usr/tests/lib/libtre
 ./usr/libdata/debug/usr/tests/lib/libusbhid
 ./usr/libdata/debug/usr/tests/lib/libutil
+./usr/libdata/debug/usr/tests/lib/semaphore
+./usr/libdata/debug/usr/tests/lib/semaphore/pthread
 ./usr/libdata/debug/usr/tests/libexec
 ./usr/libdata/debug/usr/tests/libexec/ld.elf_so
 ./usr/libdata/debug/usr/tests/libexec/ld.elf_so/h_helper_symver_dso0
@@ -176,17 +176,17 @@
 ./usr/libdata/debug/usr/tests/usr.bin
 ./usr/libdata/debug/usr/tests/usr.bin/cpio
 ./usr/libdata/debug/usr/tests/usr.bin/id
-./usr/libdata/debug/usr/tests/usr.bin/tar
 ./usr/libdata/debug/usr/tests/usr.bin/mkdep
 ./usr/libdata/debug/usr/tests/usr.bin/netpgpverify
+./usr/libdata/debug/usr/tests/usr.bin/tar
 ./usr/libdata/debug/usr/tests/usr.sbin
 ./usr/libdata/debug/usr/tests/usr.sbin/inetd
 ./usr/tests
 ./usr/tests/atf
 ./usr/tests/atf/atf-c
-./usr/tests/atf/atf-c/detail
 ./usr/tests/atf/atf-c++
 ./usr/tests/atf/atf-c++/detail
+./usr/tests/atf/atf-c/detail
 ./usr/tests/atf/atf-sh
 ./usr/tests/atf/test-programs
 ./usr/tests/atf/tools
@@ -199,10 +199,10 @@
 ./usr/tests/bin/expr
 ./usr/tests/bin/pax
 ./usr/tests/bin/ps
-./usr/tests/bin/sleep
 ./usr/tests/bin/sh
 ./usr/tests/bin/sh/dotcmd
 ./usr/tests/bin/sh/dotcmd/out
+./usr/tests/bin/sleep
 ./usr/tests/bin/tar
 ./usr/tests/crypto
 ./usr/tests/crypto/libcrypto
@@ -275,6 +275,7 @@
 ./usr/tests/lib/csu
 ./usr/tests/lib/libarchive
 ./usr/tests/lib/libbluetooth
+./usr/tests/lib/libbpfjit
 ./usr/tests/lib/libc
 ./usr/tests/lib/libc/atomic
 ./usr/tests/lib/libc/c063
@@ -284,8 +285,8 @@
 ./usr/tests/lib/libc/gen/posix_spawn
 ./usr/tests/lib/libc/hash
 ./usr/tests/lib/libc/hash/data
-./usr/tests/lib/libc/locale
 ./usr/tests/lib/libc/inet
+./usr/tests/lib/libc/locale
 ./usr/tests/lib/libc/misc
 ./usr/tests/lib/libc/net
 ./usr/tests/lib/libc/net/getaddrinfo
@@ -301,17 +302,14 @@
 ./usr/tests/lib/libc/string
 ./usr/tests/lib/libc/sys
 ./usr/tests/lib/libc/termios
+./usr/tests/lib/libc/time
 ./usr/tests/lib/libc/tls
 ./usr/tests/lib/libc/ttyio
-./usr/tests/lib/libc/time
 ./usr/tests/lib/libcrypt
 ./usr/tests/lib/libcurses
 

CVS commit: src/etc/mtree

2022-03-06 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Mar  6 17:51:42 UTC 2022

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
add named plugins directory.


To generate a diff of this commit:
cvs rdiff -u -r1.241 -r1.242 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.241 src/etc/mtree/NetBSD.dist.base:1.242
--- src/etc/mtree/NetBSD.dist.base:1.241	Sat Jan 22 02:53:06 2022
+++ src/etc/mtree/NetBSD.dist.base	Sun Mar  6 12:51:42 2022
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.241 2022/01/22 07:53:06 pho Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.242 2022/03/06 17:51:42 christos Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -354,6 +354,7 @@
 ./usr/lib/i18n
 ./usr/lib/lua
 ./usr/lib/lua/5.3
+./usr/lib/named
 ./usr/lib/pkgconfig
 ./usr/lib/postfix
 ./usr/lib/security
@@ -370,6 +371,7 @@
 ./usr/libdata/debug/usr/games
 ./usr/libdata/debug/usr/lib
 ./usr/libdata/debug/usr/lib/i18n
+./usr/libdata/debug/usr/lib/named
 ./usr/libdata/debug/usr/libexec
 ./usr/libdata/debug/usr/libexec/ching
 ./usr/libdata/debug/usr/libexec/lpr



CVS commit: src/etc/mtree

2022-03-06 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Mar  6 17:51:42 UTC 2022

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
add named plugins directory.


To generate a diff of this commit:
cvs rdiff -u -r1.241 -r1.242 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2021-11-29 Thread Simon Burge
Module Name:src
Committed By:   simonb
Date:   Tue Nov 30 06:21:58 UTC 2021

Modified Files:
src/etc/mtree: special

Log Message:
Add /etc/sshd/ssh_host_ed25519_key* .


To generate a diff of this commit:
cvs rdiff -u -r1.171 -r1.172 src/etc/mtree/special

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2021-11-29 Thread Simon Burge
Module Name:src
Committed By:   simonb
Date:   Tue Nov 30 06:21:58 UTC 2021

Modified Files:
src/etc/mtree: special

Log Message:
Add /etc/sshd/ssh_host_ed25519_key* .


To generate a diff of this commit:
cvs rdiff -u -r1.171 -r1.172 src/etc/mtree/special

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/special
diff -u src/etc/mtree/special:1.171 src/etc/mtree/special:1.172
--- src/etc/mtree/special:1.171	Fri Feb 26 18:39:10 2021
+++ src/etc/mtree/special	Tue Nov 30 06:21:58 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: special,v 1.171 2021/02/26 18:39:10 jakllsch Exp $
+#	$NetBSD: special,v 1.172 2021/11/30 06:21:58 simonb Exp $
 #	@(#)special	8.2 (Berkeley) 1/23/94
 #
 # This file may be overwritten on upgrades.
@@ -338,6 +338,8 @@
 ./etc/ssh/ssh_host_dsa_key.pub	type=file mode=0644 optional
 ./etc/ssh/ssh_host_ecdsa_key	type=file mode=0600 optional tags=nodiff
 ./etc/ssh/ssh_host_ecdsa_key.pub	type=file mode=0644 optional
+./etc/ssh/ssh_host_ed25519_key	type=file mode=0600 optional tags=nodiff
+./etc/ssh/ssh_host_ed25519_key.pub	type=file mode=0644 optional
 ./etc/ssh/ssh_host_key		type=file mode=0600 optional tags=nodiff tags=nodiff
 ./etc/ssh/ssh_host_key.pub	type=file mode=0644 optional
 ./etc/ssh/ssh_host_rsa_key	type=file mode=0600 optional tags=nodiff



CVS commit: src/etc/mtree

2021-08-12 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Aug 12 11:50:42 UTC 2021

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Add directory for new mkdep test binaries


To generate a diff of this commit:
cvs rdiff -u -r1.186 -r1.187 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.tests
diff -u src/etc/mtree/NetBSD.dist.tests:1.186 src/etc/mtree/NetBSD.dist.tests:1.187
--- src/etc/mtree/NetBSD.dist.tests:1.186	Thu Aug  5 22:36:07 2021
+++ src/etc/mtree/NetBSD.dist.tests	Thu Aug 12 11:50:42 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.tests,v 1.186 2021/08/05 22:36:07 rillig Exp $
+#	$NetBSD: NetBSD.dist.tests,v 1.187 2021/08/12 11:50:42 martin Exp $
 
 ./usr/libdata/debug/usr/tests
 ./usr/libdata/debug/usr/tests/atf
@@ -177,6 +177,7 @@
 ./usr/libdata/debug/usr/tests/usr.bin/cpio
 ./usr/libdata/debug/usr/tests/usr.bin/id
 ./usr/libdata/debug/usr/tests/usr.bin/tar
+./usr/libdata/debug/usr/tests/usr.bin/mkdep
 ./usr/libdata/debug/usr/tests/usr.bin/netpgpverify
 ./usr/libdata/debug/usr/tests/usr.sbin
 ./usr/tests



CVS commit: src/etc/mtree

2021-08-12 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Aug 12 11:50:42 UTC 2021

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Add directory for new mkdep test binaries


To generate a diff of this commit:
cvs rdiff -u -r1.186 -r1.187 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2021-04-27 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Tue Apr 27 06:51:49 UTC 2021

Modified Files:
src/etc/mtree: NetBSD.dist.Xorg

Log Message:
update for libX11 1.7.0.


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/etc/mtree/NetBSD.dist.Xorg

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.Xorg
diff -u src/etc/mtree/NetBSD.dist.Xorg:1.28 src/etc/mtree/NetBSD.dist.Xorg:1.29
--- src/etc/mtree/NetBSD.dist.Xorg:1.28	Tue Nov 10 21:47:49 2020
+++ src/etc/mtree/NetBSD.dist.Xorg	Tue Apr 27 06:51:49 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.Xorg,v 1.28 2020/11/10 21:47:49 kamil Exp $
+#	$NetBSD: NetBSD.dist.Xorg,v 1.29 2021/04/27 06:51:49 mrg Exp $
 ./usr/X11R7
 ./usr/X11R7/bin
 ./usr/X11R7/include
@@ -101,7 +101,7 @@
 ./usr/X11R7/lib/X11/locale/pt_BR.UTF-8
 ./usr/X11R7/lib/X11/locale/pt_PT.UTF-8
 ./usr/X11R7/lib/X11/locale/ru_RU.UTF-8
-./usr/X11R7/lib/X11/locale/sr_CS.UTF-8
+./usr/X11R7/lib/X11/locale/sr_RS.UTF-8
 ./usr/X11R7/lib/X11/locale/tatar-cyr
 ./usr/X11R7/lib/X11/locale/th_TH
 ./usr/X11R7/lib/X11/locale/th_TH.UTF-8



CVS commit: src/etc/mtree

2021-04-27 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Tue Apr 27 06:51:49 UTC 2021

Modified Files:
src/etc/mtree: NetBSD.dist.Xorg

Log Message:
update for libX11 1.7.0.


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/etc/mtree/NetBSD.dist.Xorg

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2021-04-11 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Mon Apr 12 02:09:27 UTC 2021

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
create the gcc-10 subdirs, and don't create the gcc-8 ones.


To generate a diff of this commit:
cvs rdiff -u -r1.234 -r1.235 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.234 src/etc/mtree/NetBSD.dist.base:1.235
--- src/etc/mtree/NetBSD.dist.base:1.234	Wed Mar 31 04:58:01 2021
+++ src/etc/mtree/NetBSD.dist.base	Mon Apr 12 02:09:27 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.234 2021/03/31 04:58:01 christos Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.235 2021/04/12 02:09:27 mrg Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -201,10 +201,10 @@
 ./usr/include/g++/tr1
 ./usr/include/g++/tr1_impl
 ./usr/include/g++/tr2
-./usr/include/gcc-8
-./usr/include/gcc-8/sanitizer
 ./usr/include/gcc-9
 ./usr/include/gcc-9/sanitizer
+./usr/include/gcc-10
+./usr/include/gcc-10/sanitizer
 ./usr/include/gssapi
 ./usr/include/isofs
 ./usr/include/isofs/cd9660



CVS commit: src/etc/mtree

2021-04-11 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Mon Apr 12 02:09:27 UTC 2021

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
create the gcc-10 subdirs, and don't create the gcc-8 ones.


To generate a diff of this commit:
cvs rdiff -u -r1.234 -r1.235 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2021-03-30 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Mar 31 04:58:01 UTC 2021

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
add named plugin dir


To generate a diff of this commit:
cvs rdiff -u -r1.233 -r1.234 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.233 src/etc/mtree/NetBSD.dist.base:1.234
--- src/etc/mtree/NetBSD.dist.base:1.233	Sun Jan 17 14:32:53 2021
+++ src/etc/mtree/NetBSD.dist.base	Wed Mar 31 00:58:01 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.233 2021/01/17 19:32:53 rillig Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.234 2021/03/31 04:58:01 christos Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -301,6 +301,7 @@
 ./usr/libexec
 ./usr/libexec/ching
 ./usr/libexec/lpr
+./usr/libexec/named
 ./usr/libexec/postfix
 ./usr/mdec
 ./usr/pkg			ignore optional



CVS commit: src/etc/mtree

2021-03-30 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Mar 31 04:58:01 UTC 2021

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
add named plugin dir


To generate a diff of this commit:
cvs rdiff -u -r1.233 -r1.234 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2021-02-26 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Fri Feb 26 18:39:10 UTC 2021

Modified Files:
src/etc/mtree: special

Log Message:
Add /etc/ip6addrctl.conf as optional file so it is backed up.


To generate a diff of this commit:
cvs rdiff -u -r1.170 -r1.171 src/etc/mtree/special

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/special
diff -u src/etc/mtree/special:1.170 src/etc/mtree/special:1.171
--- src/etc/mtree/special:1.170	Sun Jun 28 03:05:59 2020
+++ src/etc/mtree/special	Fri Feb 26 18:39:10 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: special,v 1.170 2020/06/28 03:05:59 kim Exp $
+#	$NetBSD: special,v 1.171 2021/02/26 18:39:10 jakllsch Exp $
 #	@(#)special	8.2 (Berkeley) 1/23/94
 #
 # This file may be overwritten on upgrades.
@@ -92,6 +92,7 @@
 ./etc/hosts.lpd			type=file mode=0644 optional
 ./etc/ifaliases			type=file mode=0644 optional
 ./etc/inetd.conf		type=file mode=0644
+./etc/ip6addrctl.conf		type=file mode=0644 optional
 ./etc/ipf.conf			type=file mode=0644 optional
 ./etc/ipf6.conf			type=file mode=0644 optional
 ./etc/ipnat.conf		type=file mode=0644 optional



CVS commit: src/etc/mtree

2021-02-26 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Fri Feb 26 18:39:10 UTC 2021

Modified Files:
src/etc/mtree: special

Log Message:
Add /etc/ip6addrctl.conf as optional file so it is backed up.


To generate a diff of this commit:
cvs rdiff -u -r1.170 -r1.171 src/etc/mtree/special

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2021-01-16 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sat Jan 16 20:30:05 UTC 2021

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
add directory /usr/libdata/lint/strict-bool

This is needed for usr.bin/xlint/xlint.


To generate a diff of this commit:
cvs rdiff -u -r1.230 -r1.231 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.230 src/etc/mtree/NetBSD.dist.base:1.231
--- src/etc/mtree/NetBSD.dist.base:1.230	Mon Nov 23 12:41:47 2020
+++ src/etc/mtree/NetBSD.dist.base	Sat Jan 16 20:30:05 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.230 2020/11/23 12:41:47 martin Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.231 2021/01/16 20:30:05 rillig Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -297,6 +297,7 @@
 ./usr/libdata/firmware/bcm43xx
 ./usr/libdata/ldscripts
 ./usr/libdata/lint
+./usr/libdata/lint/strict-bool
 ./usr/libexec
 ./usr/libexec/ching
 ./usr/libexec/lpr



CVS commit: src/etc/mtree

2021-01-16 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sat Jan 16 20:30:05 UTC 2021

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
add directory /usr/libdata/lint/strict-bool

This is needed for usr.bin/xlint/xlint.


To generate a diff of this commit:
cvs rdiff -u -r1.230 -r1.231 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-12-11 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Sat Dec 12 02:50:26 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Add directory entry for new libossaudio test


To generate a diff of this commit:
cvs rdiff -u -r1.182 -r1.183 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.tests
diff -u src/etc/mtree/NetBSD.dist.tests:1.182 src/etc/mtree/NetBSD.dist.tests:1.183
--- src/etc/mtree/NetBSD.dist.tests:1.182	Sun Nov  1 22:29:13 2020
+++ src/etc/mtree/NetBSD.dist.tests	Sat Dec 12 02:50:26 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.tests,v 1.182 2020/11/01 22:29:13 christos Exp $
+#	$NetBSD: NetBSD.dist.tests,v 1.183 2020/12/12 02:50:26 pgoyette Exp $
 
 ./usr/libdata/debug/usr/tests
 ./usr/libdata/debug/usr/tests/atf
@@ -114,6 +114,7 @@
 ./usr/libdata/debug/usr/tests/lib/libnvmm
 ./usr/libdata/debug/usr/tests/lib/libobjc
 ./usr/libdata/debug/usr/tests/lib/libposix
+./usr/libdata/debug/usr/tests/lib/libossaudio
 ./usr/libdata/debug/usr/tests/lib/libposix/bsd
 ./usr/libdata/debug/usr/tests/lib/libposix/posix1
 ./usr/libdata/debug/usr/tests/lib/libposix/posix2
@@ -316,6 +317,7 @@
 ./usr/tests/lib/libm
 ./usr/tests/lib/libnvmm
 ./usr/tests/lib/libobjc
+./usr/tests/lib/libossaudio
 ./usr/tests/lib/libposix
 ./usr/tests/lib/libposix/bsd
 ./usr/tests/lib/libposix/posix1



CVS commit: src/etc/mtree

2020-12-11 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Sat Dec 12 02:50:26 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Add directory entry for new libossaudio test


To generate a diff of this commit:
cvs rdiff -u -r1.182 -r1.183 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-11-11 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Nov 11 19:56:09 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Add /var/games/warp


To generate a diff of this commit:
cvs rdiff -u -r1.228 -r1.229 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-11-11 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Nov 11 19:56:09 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Add /var/games/warp


To generate a diff of this commit:
cvs rdiff -u -r1.228 -r1.229 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.228 src/etc/mtree/NetBSD.dist.base:1.229
--- src/etc/mtree/NetBSD.dist.base:1.228	Tue Nov 10 16:47:49 2020
+++ src/etc/mtree/NetBSD.dist.base	Wed Nov 11 14:56:09 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.228 2020/11/10 21:47:49 kamil Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.229 2020/11/11 19:56:09 christos Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -1338,6 +1338,7 @@
 ./var/games/larn		uname=games gname=games mode=0775
 ./var/games/phantasia		uname=games gname=games mode=0775
 ./var/games/sail		uname=games gname=games mode=0775
+./var/games/warp		uname=games gname=games mode=0775
 ./var/heimdal
 ./var/log
 ./var/log/rdist



CVS commit: src/etc/mtree

2020-11-10 Thread Kamil Rytarowski
Module Name:src
Committed By:   kamil
Date:   Tue Nov 10 10:31:48 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
+ ./usr/share/games/warp


To generate a diff of this commit:
cvs rdiff -u -r1.226 -r1.227 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-11-10 Thread Kamil Rytarowski
Module Name:src
Committed By:   kamil
Date:   Tue Nov 10 10:31:48 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
+ ./usr/share/games/warp


To generate a diff of this commit:
cvs rdiff -u -r1.226 -r1.227 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.226 src/etc/mtree/NetBSD.dist.base:1.227
--- src/etc/mtree/NetBSD.dist.base:1.226	Mon Nov  9 01:07:04 2020
+++ src/etc/mtree/NetBSD.dist.base	Tue Nov 10 10:31:48 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.226 2020/11/09 01:07:04 kamil Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.227 2020/11/10 10:31:48 kamil Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -426,6 +426,7 @@
 ./usr/share/games/fortune
 ./usr/share/games/larn
 ./usr/share/games/quiz.db
+./usr/share/games/warp
 ./usr/share/gdb
 ./usr/share/gdb/syscalls
 ./usr/share/gnats



CVS commit: src/etc/mtree

2020-11-08 Thread Kamil Rytarowski
Module Name:src
Committed By:   kamil
Date:   Mon Nov  9 01:07:04 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.Xorg NetBSD.dist.base

Log Message:
Remove the catman directories

No longer relevant after the MKCATPAGES removal.


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/etc/mtree/NetBSD.dist.Xorg
cvs rdiff -u -r1.225 -r1.226 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-11-08 Thread Kamil Rytarowski
Module Name:src
Committed By:   kamil
Date:   Mon Nov  9 01:07:04 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.Xorg NetBSD.dist.base

Log Message:
Remove the catman directories

No longer relevant after the MKCATPAGES removal.


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/etc/mtree/NetBSD.dist.Xorg
cvs rdiff -u -r1.225 -r1.226 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.Xorg
diff -u src/etc/mtree/NetBSD.dist.Xorg:1.26 src/etc/mtree/NetBSD.dist.Xorg:1.27
--- src/etc/mtree/NetBSD.dist.Xorg:1.26	Sun Jan 19 00:58:14 2020
+++ src/etc/mtree/NetBSD.dist.Xorg	Mon Nov  9 01:07:04 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.Xorg,v 1.26 2020/01/19 00:58:14 jmcneill Exp $
+#	$NetBSD: NetBSD.dist.Xorg,v 1.27 2020/11/09 01:07:04 kamil Exp $
 ./usr/X11R7
 ./usr/X11R7/bin
 ./usr/X11R7/include
@@ -155,13 +155,6 @@
 ./usr/X11R7/lib/xorg
 ./usr/X11R7/libexec
 ./usr/X11R7/man
-./usr/X11R7/man/cat1
-./usr/X11R7/man/cat3
-./usr/X11R7/man/cat4
-./usr/X11R7/man/cat4/evbarm
-./usr/X11R7/man/cat4/x86
-./usr/X11R7/man/cat5
-./usr/X11R7/man/cat7
 ./usr/X11R7/man/html1
 ./usr/X11R7/man/html3
 ./usr/X11R7/man/html4

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.225 src/etc/mtree/NetBSD.dist.base:1.226
--- src/etc/mtree/NetBSD.dist.base:1.225	Sat Oct 24 07:03:00 2020
+++ src/etc/mtree/NetBSD.dist.base	Mon Nov  9 01:07:04 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.225 2020/10/24 07:03:00 kamil Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.226 2020/11/09 01:07:04 kamil Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -883,114 +883,6 @@
 ./usr/share/lua
 ./usr/share/lua/5.3
 ./usr/share/man
-./usr/share/man/cat1
-./usr/share/man/cat1/atari
-./usr/share/man/cat1/hp300
-./usr/share/man/cat1/x68k
-./usr/share/man/cat2
-./usr/share/man/cat3
-./usr/share/man/cat3lua
-./usr/share/man/cat4
-./usr/share/man/cat4/acorn32
-./usr/share/man/cat4/alpha
-./usr/share/man/cat4/amiga
-./usr/share/man/cat4/arc
-./usr/share/man/cat4/atari
-./usr/share/man/cat4/cobalt
-./usr/share/man/cat4/dreamcast
-./usr/share/man/cat4/emips
-./usr/share/man/cat4/evbarm
-./usr/share/man/cat4/evbmips
-./usr/share/man/cat4/evbppc
-./usr/share/man/cat4/hp300
-./usr/share/man/cat4/hpcarm
-./usr/share/man/cat4/hpcmips
-./usr/share/man/cat4/hpcsh
-./usr/share/man/cat4/hppa
-./usr/share/man/cat4/i386
-./usr/share/man/cat4/mac68k
-./usr/share/man/cat4/macppc
-./usr/share/man/cat4/mvme68k
-./usr/share/man/cat4/pmax
-./usr/share/man/cat4/prep
-./usr/share/man/cat4/sandpoint
-./usr/share/man/cat4/sgimips
-./usr/share/man/cat4/sparc
-./usr/share/man/cat4/sparc64
-./usr/share/man/cat4/sun2
-./usr/share/man/cat4/sun3
-./usr/share/man/cat4/vax
-./usr/share/man/cat4/x68k
-./usr/share/man/cat4/x86
-./usr/share/man/cat5
-./usr/share/man/cat6
-./usr/share/man/cat7
-./usr/share/man/cat8
-./usr/share/man/cat8/acorn32
-./usr/share/man/cat8/algor
-./usr/share/man/cat8/alpha
-./usr/share/man/cat8/amd64
-./usr/share/man/cat8/amiga
-./usr/share/man/cat8/arc
-./usr/share/man/cat8/atari
-./usr/share/man/cat8/bebox
-./usr/share/man/cat8/cats
-./usr/share/man/cat8/cesfic
-./usr/share/man/cat8/cobalt
-./usr/share/man/cat8/dreamcast
-./usr/share/man/cat8/emips
-./usr/share/man/cat8/evbarm
-./usr/share/man/cat8/evbmips
-./usr/share/man/cat8/evbppc
-./usr/share/man/cat8/evbsh3
-./usr/share/man/cat8/hp300
-./usr/share/man/cat8/hpcarm
-./usr/share/man/cat8/hpcmips
-./usr/share/man/cat8/hpcsh
-./usr/share/man/cat8/hppa
-./usr/share/man/cat8/i386
-./usr/share/man/cat8/ibmnws
-./usr/share/man/cat8/luna68k
-./usr/share/man/cat8/mac68k
-./usr/share/man/cat8/macppc
-./usr/share/man/cat8/mipsco
-./usr/share/man/cat8/mmeye
-./usr/share/man/cat8/mvme68k
-./usr/share/man/cat8/mvmeppc
-./usr/share/man/cat8/netwinder
-./usr/share/man/cat8/news68k
-./usr/share/man/cat8/newsmips
-./usr/share/man/cat8/next68k
-./usr/share/man/cat8/ofppc
-./usr/share/man/cat8/playstation2
-./usr/share/man/cat8/pmax
-./usr/share/man/cat8/prep
-./usr/share/man/cat8/sandpoint
-./usr/share/man/cat8/sbmips
-./usr/share/man/cat8/sgimips
-./usr/share/man/cat8/shark
-./usr/share/man/cat8/sparc
-./usr/share/man/cat8/sparc64
-./usr/share/man/cat8/sun2
-./usr/share/man/cat8/sun3
-./usr/share/man/cat8/vax
-./usr/share/man/cat8/x68k
-./usr/share/man/cat8/x86
-./usr/share/man/cat9
-./usr/share/man/cat9lua
-./usr/share/man/cat9/alpha
-./usr/share/man/cat9/amiga
-./usr/share/man/cat9/atari
-./usr/share/man/cat9/emips
-./usr/share/man/cat9/hp300
-./usr/share/man/cat9/i386
-./usr/share/man/cat9/mac68k
-./usr/share/man/cat9/pmax
-./usr/share/man/cat9/sparc
-./usr/share/man/cat9/sun3
-./usr/share/man/cat9/vax
-./usr/share/man/cat9/x68k
-./usr/share/man/cat9/x86
 ./usr/share/man/html1
 ./usr/share/man/html1/atari
 ./usr/share/man/html1/hp300



CVS commit: src/etc/mtree

2020-11-01 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Nov  1 22:29:14 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Add col tests


To generate a diff of this commit:
cvs rdiff -u -r1.181 -r1.182 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-11-01 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Nov  1 22:29:14 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Add col tests


To generate a diff of this commit:
cvs rdiff -u -r1.181 -r1.182 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.tests
diff -u src/etc/mtree/NetBSD.dist.tests:1.181 src/etc/mtree/NetBSD.dist.tests:1.182
--- src/etc/mtree/NetBSD.dist.tests:1.181	Thu Oct 15 13:44:44 2020
+++ src/etc/mtree/NetBSD.dist.tests	Sun Nov  1 17:29:13 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.tests,v 1.181 2020/10/15 17:44:44 mgorny Exp $
+#	$NetBSD: NetBSD.dist.tests,v 1.182 2020/11/01 22:29:13 christos Exp $
 
 ./usr/libdata/debug/usr/tests
 ./usr/libdata/debug/usr/tests/atf
@@ -417,6 +417,7 @@
 ./usr/tests/usr.bin/config/support/arch/regress
 ./usr/tests/usr.bin/config/support/arch/regress/conf
 ./usr/tests/usr.bin/config/support/conf
+./usr/tests/usr.bin/col
 ./usr/tests/usr.bin/cpio
 ./usr/tests/usr.bin/cut
 ./usr/tests/usr.bin/diff



CVS commit: src/etc/mtree

2020-10-24 Thread Kamil Rytarowski
Module Name:src
Committed By:   kamil
Date:   Sat Oct 24 07:03:01 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Register the usr/share/gdb dir


To generate a diff of this commit:
cvs rdiff -u -r1.224 -r1.225 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-10-24 Thread Kamil Rytarowski
Module Name:src
Committed By:   kamil
Date:   Sat Oct 24 07:03:01 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Register the usr/share/gdb dir


To generate a diff of this commit:
cvs rdiff -u -r1.224 -r1.225 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.224 src/etc/mtree/NetBSD.dist.base:1.225
--- src/etc/mtree/NetBSD.dist.base:1.224	Wed Sep  9 06:50:33 2020
+++ src/etc/mtree/NetBSD.dist.base	Sat Oct 24 07:03:00 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.224 2020/09/09 06:50:33 mrg Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.225 2020/10/24 07:03:00 kamil Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -426,6 +426,8 @@
 ./usr/share/games/fortune
 ./usr/share/games/larn
 ./usr/share/games/quiz.db
+./usr/share/gdb
+./usr/share/gdb/syscalls
 ./usr/share/gnats
 ./usr/share/groff_font
 ./usr/share/groff_font/devX100



CVS commit: src/etc/mtree

2020-09-30 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Wed Sep 30 20:20:53 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Add if_tap directory for DEBUG builds.


To generate a diff of this commit:
cvs rdiff -u -r1.179 -r1.180 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.tests
diff -u src/etc/mtree/NetBSD.dist.tests:1.179 src/etc/mtree/NetBSD.dist.tests:1.180
--- src/etc/mtree/NetBSD.dist.tests:1.179	Wed Sep 30 08:32:00 2020
+++ src/etc/mtree/NetBSD.dist.tests	Wed Sep 30 20:20:53 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.tests,v 1.179 2020/09/30 08:32:00 martin Exp $
+#	$NetBSD: NetBSD.dist.tests,v 1.180 2020/09/30 20:20:53 roy Exp $
 
 ./usr/libdata/debug/usr/tests
 ./usr/libdata/debug/usr/tests/atf
@@ -147,6 +147,8 @@
 ./usr/libdata/debug/usr/tests/net/icmp
 ./usr/libdata/debug/usr/tests/net/if
 ./usr/libdata/debug/usr/tests/net/if_loop
+./usr/libdata/debug/usr/tests/net/if_tap
+./usr/libdata/debug/usr/tests/net/if_vether
 ./usr/libdata/debug/usr/tests/net/if_vlan
 ./usr/libdata/debug/usr/tests/net/in_cksum
 ./usr/libdata/debug/usr/tests/net/ipsec



CVS commit: src/etc/mtree

2020-09-30 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Wed Sep 30 20:20:53 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Add if_tap directory for DEBUG builds.


To generate a diff of this commit:
cvs rdiff -u -r1.179 -r1.180 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



Re: CVS commit: src/etc/mtree

2020-09-30 Thread Roy Marples

On 30/09/2020 08:55, matthew green wrote:

Module Name:src
Committed By:   mrg
Date:   Wed Sep 30 07:55:31 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
add missing new if_vether subdir.


Thanks!


CVS commit: src/etc/mtree

2020-09-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Sep 30 08:32:00 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Revert previous - test is a shell script, no debug info installed


To generate a diff of this commit:
cvs rdiff -u -r1.178 -r1.179 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-09-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Sep 30 08:32:00 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Revert previous - test is a shell script, no debug info installed


To generate a diff of this commit:
cvs rdiff -u -r1.178 -r1.179 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.tests
diff -u src/etc/mtree/NetBSD.dist.tests:1.178 src/etc/mtree/NetBSD.dist.tests:1.179
--- src/etc/mtree/NetBSD.dist.tests:1.178	Wed Sep 30 08:21:27 2020
+++ src/etc/mtree/NetBSD.dist.tests	Wed Sep 30 08:32:00 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.tests,v 1.178 2020/09/30 08:21:27 martin Exp $
+#	$NetBSD: NetBSD.dist.tests,v 1.179 2020/09/30 08:32:00 martin Exp $
 
 ./usr/libdata/debug/usr/tests
 ./usr/libdata/debug/usr/tests/atf
@@ -147,7 +147,6 @@
 ./usr/libdata/debug/usr/tests/net/icmp
 ./usr/libdata/debug/usr/tests/net/if
 ./usr/libdata/debug/usr/tests/net/if_loop
-./usr/libdata/debug/usr/tests/net/if_vether
 ./usr/libdata/debug/usr/tests/net/if_vlan
 ./usr/libdata/debug/usr/tests/net/in_cksum
 ./usr/libdata/debug/usr/tests/net/ipsec



CVS commit: src/etc/mtree

2020-09-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Sep 30 08:21:27 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Add if_vether debug dir


To generate a diff of this commit:
cvs rdiff -u -r1.177 -r1.178 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.tests
diff -u src/etc/mtree/NetBSD.dist.tests:1.177 src/etc/mtree/NetBSD.dist.tests:1.178
--- src/etc/mtree/NetBSD.dist.tests:1.177	Wed Sep 30 07:55:31 2020
+++ src/etc/mtree/NetBSD.dist.tests	Wed Sep 30 08:21:27 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.tests,v 1.177 2020/09/30 07:55:31 mrg Exp $
+#	$NetBSD: NetBSD.dist.tests,v 1.178 2020/09/30 08:21:27 martin Exp $
 
 ./usr/libdata/debug/usr/tests
 ./usr/libdata/debug/usr/tests/atf
@@ -147,6 +147,7 @@
 ./usr/libdata/debug/usr/tests/net/icmp
 ./usr/libdata/debug/usr/tests/net/if
 ./usr/libdata/debug/usr/tests/net/if_loop
+./usr/libdata/debug/usr/tests/net/if_vether
 ./usr/libdata/debug/usr/tests/net/if_vlan
 ./usr/libdata/debug/usr/tests/net/in_cksum
 ./usr/libdata/debug/usr/tests/net/ipsec



CVS commit: src/etc/mtree

2020-09-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Sep 30 08:21:27 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Add if_vether debug dir


To generate a diff of this commit:
cvs rdiff -u -r1.177 -r1.178 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-09-30 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Wed Sep 30 07:55:31 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
add missing new if_vether subdir.


To generate a diff of this commit:
cvs rdiff -u -r1.176 -r1.177 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-09-30 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Wed Sep 30 07:55:31 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
add missing new if_vether subdir.


To generate a diff of this commit:
cvs rdiff -u -r1.176 -r1.177 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.tests
diff -u src/etc/mtree/NetBSD.dist.tests:1.176 src/etc/mtree/NetBSD.dist.tests:1.177
--- src/etc/mtree/NetBSD.dist.tests:1.176	Wed Aug 26 16:03:41 2020
+++ src/etc/mtree/NetBSD.dist.tests	Wed Sep 30 07:55:31 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.tests,v 1.176 2020/08/26 16:03:41 riastradh Exp $
+#	$NetBSD: NetBSD.dist.tests,v 1.177 2020/09/30 07:55:31 mrg Exp $
 
 ./usr/libdata/debug/usr/tests
 ./usr/libdata/debug/usr/tests/atf
@@ -357,6 +357,7 @@
 ./usr/tests/net/if_pppoe
 ./usr/tests/net/if_tap
 ./usr/tests/net/if_tun
+./usr/tests/net/if_vether
 ./usr/tests/net/if_vlan
 ./usr/tests/net/if_wg
 ./usr/tests/net/in_cksum



CVS commit: src/etc/mtree

2020-09-06 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Sep  6 10:59:51 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
obsolete gcc-7 dirs.  add gcc-9 dirs.


To generate a diff of this commit:
cvs rdiff -u -r1.222 -r1.223 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-09-06 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Sep  6 10:59:51 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
obsolete gcc-7 dirs.  add gcc-9 dirs.


To generate a diff of this commit:
cvs rdiff -u -r1.222 -r1.223 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.222 src/etc/mtree/NetBSD.dist.base:1.223
--- src/etc/mtree/NetBSD.dist.base:1.222	Wed Jul 22 19:02:01 2020
+++ src/etc/mtree/NetBSD.dist.base	Sun Sep  6 10:59:51 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.222 2020/07/22 19:02:01 roy Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.223 2020/09/06 10:59:51 mrg Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -199,10 +199,10 @@
 ./usr/include/g++/tr1
 ./usr/include/g++/tr1_impl
 ./usr/include/g++/tr2
-./usr/include/gcc-7
-./usr/include/gcc-7/sanitizer
 ./usr/include/gcc-8
 ./usr/include/gcc-8/sanitizer
+./usr/include/gcc-9
+./usr/include/gcc-9/sanitizer
 ./usr/include/gssapi
 ./usr/include/isofs
 ./usr/include/isofs/cd9660



CVS commit: src/etc/mtree

2020-07-25 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Sun Jul 26 05:06:29 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Add /usr/tests/sys/crypto/chacha to etc/mtree/NetBSD.dist.tests.


To generate a diff of this commit:
cvs rdiff -u -r1.173 -r1.174 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.tests
diff -u src/etc/mtree/NetBSD.dist.tests:1.173 src/etc/mtree/NetBSD.dist.tests:1.174
--- src/etc/mtree/NetBSD.dist.tests:1.173	Fri Jul  3 04:25:28 2020
+++ src/etc/mtree/NetBSD.dist.tests	Sun Jul 26 05:06:29 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.tests,v 1.173 2020/07/03 04:25:28 jruoho Exp $
+#	$NetBSD: NetBSD.dist.tests,v 1.174 2020/07/26 05:06:29 riastradh Exp $
 
 ./usr/libdata/debug/usr/tests
 ./usr/libdata/debug/usr/tests/atf
@@ -164,6 +164,7 @@
 ./usr/libdata/debug/usr/tests/sys
 ./usr/libdata/debug/usr/tests/sys/crypto
 ./usr/libdata/debug/usr/tests/sys/crypto/aes
+./usr/libdata/debug/usr/tests/sys/crypto/chacha
 ./usr/libdata/debug/usr/tests/sys/net
 ./usr/libdata/debug/usr/tests/sys/netatalk
 ./usr/libdata/debug/usr/tests/sys/netinet
@@ -391,6 +392,7 @@
 ./usr/tests/sys
 ./usr/tests/sys/crypto
 ./usr/tests/sys/crypto/aes
+./usr/tests/sys/crypto/chacha
 ./usr/tests/sys/net
 ./usr/tests/sys/netatalk
 ./usr/tests/sys/netinet



CVS commit: src/etc/mtree

2020-07-25 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Sun Jul 26 05:06:29 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Add /usr/tests/sys/crypto/chacha to etc/mtree/NetBSD.dist.tests.


To generate a diff of this commit:
cvs rdiff -u -r1.173 -r1.174 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-07-03 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Fri Jul  3 11:03:42 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Add /var/db/dhcpcd back


To generate a diff of this commit:
cvs rdiff -u -r1.220 -r1.221 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.220 src/etc/mtree/NetBSD.dist.base:1.221
--- src/etc/mtree/NetBSD.dist.base:1.220	Mon Jun 22 03:16:29 2020
+++ src/etc/mtree/NetBSD.dist.base	Fri Jul  3 11:03:42 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.220 2020/06/22 03:16:29 rin Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.221 2020/07/03 11:03:42 roy Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -1321,6 +1321,7 @@
 ./var/cron
 ./var/cron/tabs			mode=0700
 ./var/db
+./var/db/dhcpcd			mode=0750
 ./var/db/ns
 ./var/db/obsolete
 ./var/db/postfix		uname=postfix gname=postfix mode=0755



CVS commit: src/etc/mtree

2020-07-03 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Fri Jul  3 11:03:42 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Add /var/db/dhcpcd back


To generate a diff of this commit:
cvs rdiff -u -r1.220 -r1.221 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-06-27 Thread Kimmo Suominen
Module Name:src
Committed By:   kim
Date:   Sun Jun 28 03:05:59 UTC 2020

Modified Files:
src/etc/mtree: special

Log Message:
Fix /private/tmp mode to match etc/rc.d/perusertmp


To generate a diff of this commit:
cvs rdiff -u -r1.169 -r1.170 src/etc/mtree/special

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/special
diff -u src/etc/mtree/special:1.169 src/etc/mtree/special:1.170
--- src/etc/mtree/special:1.169	Mon Jun 15 01:57:30 2020
+++ src/etc/mtree/special	Sun Jun 28 03:05:59 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: special,v 1.169 2020/06/15 01:57:30 christos Exp $
+#	$NetBSD: special,v 1.170 2020/06/28 03:05:59 kim Exp $
 #	@(#)special	8.2 (Berkeley) 1/23/94
 #
 # This file may be overwritten on upgrades.
@@ -356,7 +356,7 @@
 ./etc/zfs			type=dir  mode=0755
 
 ./private			type=dir mode=0755 optional
-./private/tmp			type=dir mode=0111 optional ignore
+./private/tmp			type=dir mode=0555 optional ignore
 
 ./roottype=dir  mode=0755
 ./root/.cshrc			type=file mode=0644



CVS commit: src/etc/mtree

2020-06-27 Thread Kimmo Suominen
Module Name:src
Committed By:   kim
Date:   Sun Jun 28 03:05:59 UTC 2020

Modified Files:
src/etc/mtree: special

Log Message:
Fix /private/tmp mode to match etc/rc.d/perusertmp


To generate a diff of this commit:
cvs rdiff -u -r1.169 -r1.170 src/etc/mtree/special

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-06-21 Thread Rin Okuyama
Module Name:src
Committed By:   rin
Date:   Mon Jun 22 03:16:29 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Add missing ./usr/share/installboot/evbmips.


To generate a diff of this commit:
cvs rdiff -u -r1.219 -r1.220 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.219 src/etc/mtree/NetBSD.dist.base:1.220
--- src/etc/mtree/NetBSD.dist.base:1.219	Mon Jun 15 01:57:30 2020
+++ src/etc/mtree/NetBSD.dist.base	Mon Jun 22 03:16:29 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.219 2020/06/15 01:57:30 christos Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.220 2020/06/22 03:16:29 rin Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -485,6 +485,7 @@
 ./usr/share/info
 ./usr/share/installboot
 ./usr/share/installboot/evbarm
+./usr/share/installboot/evbmips
 ./usr/share/keymaps
 ./usr/share/keymaps/amiga
 ./usr/share/keymaps/atari



CVS commit: src/etc/mtree

2020-06-21 Thread Rin Okuyama
Module Name:src
Committed By:   rin
Date:   Mon Jun 22 03:16:29 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Add missing ./usr/share/installboot/evbmips.


To generate a diff of this commit:
cvs rdiff -u -r1.219 -r1.220 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-06-12 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Fri Jun 12 14:12:20 UTC 2020

Modified Files:
src/etc/mtree: Makefile

Log Message:
Revert accidental part of prior


To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/etc/mtree/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/Makefile
diff -u src/etc/mtree/Makefile:1.43 src/etc/mtree/Makefile:1.44
--- src/etc/mtree/Makefile:1.43	Fri Jun 12 11:04:44 2020
+++ src/etc/mtree/Makefile	Fri Jun 12 14:12:20 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.43 2020/06/12 11:04:44 roy Exp $
+#	$NetBSD: Makefile,v 1.44 2020/06/12 14:12:20 roy Exp $
 
 .include 
 
@@ -57,9 +57,9 @@ EXTRA_DIST_FILES+=	NetBSD.dist.tests.com
 .endif
 .endif
 
-#.if ${MKDTB} != "no"
-#EXTRA_DIST_FILES+=	NetBSD.dist.dtb
-#.endif
+.if ${MKDTB} != "no"
+EXTRA_DIST_FILES+=	NetBSD.dist.dtb
+.endif
 
 .if ${MKDTRACE} != "no"
 EXTRA_DIST_FILES+=	NetBSD.dist.dtrace



CVS commit: src/etc/mtree

2020-06-12 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Fri Jun 12 14:12:20 UTC 2020

Modified Files:
src/etc/mtree: Makefile

Log Message:
Revert accidental part of prior


To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/etc/mtree/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-05-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun May 24 19:29:19 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Add libuv


To generate a diff of this commit:
cvs rdiff -u -r1.215 -r1.216 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.215 src/etc/mtree/NetBSD.dist.base:1.216
--- src/etc/mtree/NetBSD.dist.base:1.215	Wed May 13 17:34:01 2020
+++ src/etc/mtree/NetBSD.dist.base	Sun May 24 15:29:19 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.215 2020/05/13 21:34:01 nakayama Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.216 2020/05/24 19:29:19 christos Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -255,6 +255,7 @@
 ./usr/include/ufs/lfs
 ./usr/include/ufs/mfs
 ./usr/include/ufs/ufs
+./usr/include/uv
 ./usr/include/uvm
 ./usr/lib
 ./usr/lib/clang



CVS commit: src/etc/mtree

2020-05-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun May 24 19:29:19 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Add libuv


To generate a diff of this commit:
cvs rdiff -u -r1.215 -r1.216 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-05-13 Thread Takeshi Nakayama
Module Name:src
Committed By:   nakayama
Date:   Wed May 13 21:34:01 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
smbfs has been removed.


To generate a diff of this commit:
cvs rdiff -u -r1.214 -r1.215 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.214 src/etc/mtree/NetBSD.dist.base:1.215
--- src/etc/mtree/NetBSD.dist.base:1.214	Fri May  1 22:26:11 2020
+++ src/etc/mtree/NetBSD.dist.base	Wed May 13 21:34:01 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.214 2020/05/01 22:26:11 christos Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.215 2020/05/13 21:34:01 nakayama Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -157,7 +157,6 @@
 ./usr/include/fs/nilfs
 ./usr/include/fs/ptyfs
 ./usr/include/fs/puffs
-./usr/include/fs/smbfs
 ./usr/include/fs/sysvbfs
 ./usr/include/fs/tmpfs
 ./usr/include/fs/udf
@@ -233,7 +232,6 @@
 ./usr/include/netipsec
 ./usr/include/netmpls
 ./usr/include/netpgp
-./usr/include/netsmb
 ./usr/include/nfs
 ./usr/include/ntfs
 ./usr/include/objc
@@ -414,7 +412,6 @@
 ./usr/share/examples/rpcapd
 ./usr/share/examples/rtadvd
 ./usr/share/examples/slip
-./usr/share/examples/smbfs
 ./usr/share/examples/syslogd
 ./usr/share/examples/tmux
 ./usr/share/examples/wpa_supplicant



CVS commit: src/etc/mtree

2020-05-13 Thread Takeshi Nakayama
Module Name:src
Committed By:   nakayama
Date:   Wed May 13 21:34:01 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
smbfs has been removed.


To generate a diff of this commit:
cvs rdiff -u -r1.214 -r1.215 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-05-01 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri May  1 22:26:11 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Add a place for the debug modules.


To generate a diff of this commit:
cvs rdiff -u -r1.213 -r1.214 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.213 src/etc/mtree/NetBSD.dist.base:1.214
--- src/etc/mtree/NetBSD.dist.base:1.213	Thu Apr  2 08:58:49 2020
+++ src/etc/mtree/NetBSD.dist.base	Fri May  1 18:26:11 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.213 2020/04/02 12:58:49 roy Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.214 2020/05/01 22:26:11 christos Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -280,6 +280,7 @@
 ./usr/libdata/debug/lib/npf
 ./usr/libdata/debug/libexec
 ./usr/libdata/debug/sbin
+./usr/libdata/debug/stand
 ./usr/libdata/debug/usr
 ./usr/libdata/debug/usr/bin
 ./usr/libdata/debug/usr/games



CVS commit: src/etc/mtree

2020-05-01 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri May  1 22:26:11 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Add a place for the debug modules.


To generate a diff of this commit:
cvs rdiff -u -r1.213 -r1.214 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-03-29 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Mar 29 17:14:13 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Add rpcapd examples


To generate a diff of this commit:
cvs rdiff -u -r1.211 -r1.212 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.211 src/etc/mtree/NetBSD.dist.base:1.212
--- src/etc/mtree/NetBSD.dist.base:1.211	Mon Mar  2 19:42:33 2020
+++ src/etc/mtree/NetBSD.dist.base	Sun Mar 29 13:14:13 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.211 2020/03/03 00:42:33 christos Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.212 2020/03/29 17:14:13 christos Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -410,6 +410,7 @@
 ./usr/share/examples/racoon/roadwarrior
 ./usr/share/examples/racoon/roadwarrior/client
 ./usr/share/examples/racoon/roadwarrior/server
+./usr/share/examples/rpcapd
 ./usr/share/examples/rtadvd
 ./usr/share/examples/slip
 ./usr/share/examples/smbfs



CVS commit: src/etc/mtree

2020-03-29 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Mar 29 17:14:13 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Add rpcapd examples


To generate a diff of this commit:
cvs rdiff -u -r1.211 -r1.212 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-03-02 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Mar  3 00:42:33 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Extra directories for fido and cbor


To generate a diff of this commit:
cvs rdiff -u -r1.210 -r1.211 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.210 src/etc/mtree/NetBSD.dist.base:1.211
--- src/etc/mtree/NetBSD.dist.base:1.210	Fri Feb  7 13:48:58 2020
+++ src/etc/mtree/NetBSD.dist.base	Mon Mar  2 19:42:33 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.210 2020/02/07 18:48:58 kamil Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.211 2020/03/03 00:42:33 christos Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -111,6 +111,7 @@
 ./usr/include/c++
 ./usr/include/c++/experimental
 ./usr/include/c++/ext
+./usr/include/cbor
 ./usr/include/clang-9.0
 ./usr/include/crypto
 ./usr/include/dev
@@ -147,6 +148,7 @@
 ./usr/include/dev/vme
 ./usr/include/dev/wscons
 ./usr/include/event2
+./usr/include/fido
 ./usr/include/filecorefs
 ./usr/include/fs
 ./usr/include/fs/autofs



CVS commit: src/etc/mtree

2020-03-02 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Mar  3 00:42:33 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Extra directories for fido and cbor


To generate a diff of this commit:
cvs rdiff -u -r1.210 -r1.211 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2020-01-17 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Jan 17 16:09:11 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Add more test directories


To generate a diff of this commit:
cvs rdiff -u -r1.159 -r1.160 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.tests
diff -u src/etc/mtree/NetBSD.dist.tests:1.159 src/etc/mtree/NetBSD.dist.tests:1.160
--- src/etc/mtree/NetBSD.dist.tests:1.159	Sat Oct  5 14:06:16 2019
+++ src/etc/mtree/NetBSD.dist.tests	Fri Jan 17 11:09:11 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.tests,v 1.159 2019/10/05 18:06:16 jhigh Exp $
+#	$NetBSD: NetBSD.dist.tests,v 1.160 2020/01/17 16:09:11 christos Exp $
 
 ./usr/libdata/debug/usr/tests
 ./usr/libdata/debug/usr/tests/atf
@@ -72,6 +72,7 @@
 ./usr/libdata/debug/usr/tests/kyua-testers
 ./usr/libdata/debug/usr/tests/lib
 ./usr/libdata/debug/usr/tests/lib/csu
+./usr/libdata/debug/usr/tests/lib/libarchive
 ./usr/libdata/debug/usr/tests/lib/libbluetooth
 ./usr/libdata/debug/usr/tests/lib/libbpfjit
 ./usr/libdata/debug/usr/tests/lib/libc
@@ -164,7 +165,9 @@
 ./usr/libdata/debug/usr/tests/sys/netinet
 ./usr/libdata/debug/usr/tests/sys/netinet6
 ./usr/libdata/debug/usr/tests/usr.bin
+./usr/libdata/debug/usr/tests/usr.bin/cpio
 ./usr/libdata/debug/usr/tests/usr.bin/id
+./usr/libdata/debug/usr/tests/usr.bin/tar
 ./usr/libdata/debug/usr/tests/usr.bin/netpgpverify
 ./usr/libdata/debug/usr/tests/usr.sbin
 ./usr/tests
@@ -258,6 +261,7 @@
 ./usr/tests/kyua-testers
 ./usr/tests/lib
 ./usr/tests/lib/csu
+./usr/tests/lib/libarchive
 ./usr/tests/lib/libbluetooth
 ./usr/tests/lib/libc
 ./usr/tests/lib/libc/atomic
@@ -394,6 +398,7 @@
 ./usr/tests/usr.bin/config/support/arch/regress
 ./usr/tests/usr.bin/config/support/arch/regress/conf
 ./usr/tests/usr.bin/config/support/conf
+./usr/tests/usr.bin/cpio
 ./usr/tests/usr.bin/cut
 ./usr/tests/usr.bin/diff
 ./usr/tests/usr.bin/dirname
@@ -422,6 +427,7 @@
 ./usr/tests/usr.bin/sed
 ./usr/tests/usr.bin/shmif_dumpbus
 ./usr/tests/usr.bin/sort
+./usr/tests/usr.bin/tar
 ./usr/tests/usr.bin/tmux
 ./usr/tests/usr.bin/tr
 ./usr/tests/usr.bin/unifdef



CVS commit: src/etc/mtree

2020-01-17 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Jan 17 16:09:11 UTC 2020

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Add more test directories


To generate a diff of this commit:
cvs rdiff -u -r1.159 -r1.160 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2019-12-18 Thread Kamil Rytarowski
Module Name:src
Committed By:   kamil
Date:   Wed Dec 18 14:44:16 UTC 2019

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Remove obsolete mtree entry of usr/share/examples/supfiles


To generate a diff of this commit:
cvs rdiff -u -r1.206 -r1.207 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.206 src/etc/mtree/NetBSD.dist.base:1.207
--- src/etc/mtree/NetBSD.dist.base:1.206	Wed Dec 18 07:37:17 2019
+++ src/etc/mtree/NetBSD.dist.base	Wed Dec 18 14:44:16 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.206 2019/12/18 07:37:17 maxv Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.207 2019/12/18 14:44:16 kamil Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -411,7 +411,6 @@
 ./usr/share/examples/rtadvd
 ./usr/share/examples/slip
 ./usr/share/examples/smbfs
-./usr/share/examples/supfiles
 ./usr/share/examples/syslogd
 ./usr/share/examples/tmux
 ./usr/share/examples/wpa_supplicant



  1   2   3   4   5   6   >