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



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

2019-10-02 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Thu Oct  3 01:34:31 UTC 2019

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

Log Message:
add gcc-8 dirs, remove gcc-6 dirs.


To generate a diff of this commit:
cvs rdiff -u -r1.202 -r1.203 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

2019-10-02 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Thu Oct  3 01:34:31 UTC 2019

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

Log Message:
add gcc-8 dirs, remove gcc-6 dirs.


To generate a diff of this commit:
cvs rdiff -u -r1.202 -r1.203 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.202 src/etc/mtree/NetBSD.dist.base:1.203
--- src/etc/mtree/NetBSD.dist.base:1.202	Wed Aug 14 01:42:08 2019
+++ src/etc/mtree/NetBSD.dist.base	Thu Oct  3 01:34:31 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.202 2019/08/14 01:42:08 kamil Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.203 2019/10/03 01:34:31 mrg Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -197,10 +197,10 @@
 ./usr/include/g++/tr1
 ./usr/include/g++/tr1_impl
 ./usr/include/g++/tr2
-./usr/include/gcc-6
-./usr/include/gcc-6/sanitizer
 ./usr/include/gcc-7
 ./usr/include/gcc-7/sanitizer
+./usr/include/gcc-8
+./usr/include/gcc-8/sanitizer
 ./usr/include/gssapi
 ./usr/include/isofs
 ./usr/include/isofs/cd9660



CVS commit: src/etc/mtree

2019-08-02 Thread Takeshi Nakayama
Module Name:src
Committed By:   nakayama
Date:   Fri Aug  2 19:58:00 UTC 2019

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

Log Message:
Change uname and gname to sync with etc/mtree/special.
It was missing in rev 1.195 changes.


To generate a diff of this commit:
cvs rdiff -u -r1.200 -r1.201 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.200 src/etc/mtree/NetBSD.dist.base:1.201
--- src/etc/mtree/NetBSD.dist.base:1.200	Wed Jul 24 06:53:42 2019
+++ src/etc/mtree/NetBSD.dist.base	Fri Aug  2 19:58:00 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.200 2019/07/24 06:53:42 wiz Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.201 2019/08/02 19:58:00 nakayama Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -1271,7 +1271,7 @@
 ./var/chroot/named
 ./var/chroot/named/dev
 ./var/chroot/named/etc
-./var/chroot/named/etc/namedb
+./var/chroot/named/etc/namedb		mode=0755 uname=named gname=named
 ./var/chroot/named/etc/namedb/cache	mode=0775 uname=named gname=named
 ./var/chroot/named/etc/namedb/keys	type=dir mode=0775 uname=named gname=named
 ./var/chroot/named/etc/namedb/nta	type=dir mode=0775 uname=named gname=named



CVS commit: src/etc/mtree

2019-08-02 Thread Takeshi Nakayama
Module Name:src
Committed By:   nakayama
Date:   Fri Aug  2 19:58:00 UTC 2019

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

Log Message:
Change uname and gname to sync with etc/mtree/special.
It was missing in rev 1.195 changes.


To generate a diff of this commit:
cvs rdiff -u -r1.200 -r1.201 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.



Re: CVS commit: src/etc/mtree

2017-10-21 Thread Jared McNeill

On Sat, 21 Oct 2017, Robert Elz wrote:


Log Message:
Create directory for new bwfm firmware to be installed into.


Thank you!


re: CVS commit: src/etc/mtree

2015-08-12 Thread matthew green
Takeshi Nakayama writes:
 Module Name:  src
 Committed By: nakayama
 Date: Wed Aug 12 21:55:05 UTC 2015
 
 Modified Files:
   src/etc/mtree: NetBSD.dist.base
 
 Log Message:
 Remove obsolete directory ./usr/include/gcc-4.5

thanks.  i meant to do this.

and thanks for fixing the sparc builds.


.mrg.


Re: CVS commit: src/etc/mtree

2015-06-28 Thread Joerg Sonnenberger
On Sun, Jun 28, 2015 at 09:28:46AM +, Martin Husemann wrote:
 Module Name:  src
 Committed By: martin
 Date: Sun Jun 28 09:28:46 UTC 2015
 
 Modified Files:
   src/etc/mtree: Makefile
 
 Log Message:
 Guard a few $MK... != no tests by an additional defined(MK...) clause
 and make the emit_dist_file target depend on EXTRA_DIST_FILES.
 Part of fixing PR toolchain/50004.

Please use :U for those.

Joerg


Re: CVS commit: src/etc/mtree

2013-08-21 Thread Joerg Sonnenberger
On Wed, Aug 21, 2013 at 08:52:45PM +, Matthias Scheler wrote:
 Module Name:  src
 Committed By: tron
 Date: Wed Aug 21 20:52:45 UTC 2013
 
 Modified Files:
   src/etc/mtree: NetBSD.dist.base
 
 Log Message:
 Remove more obsolete directories:
 - /usr/include/gcc-4.1

This is not true, i.e. vax still uses GCC 4.1.

Joerg


Re: CVS commit: src/etc/mtree

2012-04-13 Thread Jukka Ruohonen
On Sat, Apr 14, 2012 at 12:14:22AM +, Paul Goyette wrote:
 Module Name:  src
 Committed By: pgoyette
 Date: Sat Apr 14 00:14:22 UTC 2012
 
 Modified Files:
   src/etc/mtree: NetBSD.dist.tests
 
 Log Message:
 Create the directory for the helper program; hopefully fixes the build
 break.
 
 XXX It's odd that k_helper3 needs to have its directory pre-created, when
 XXX k_helper, k_helper2, and k_uvm don't need it...

Thanks for fixing this. I was (also) kind of lost with the src/tests/modules 
build mechanisms...

- Jukka.


Re: CVS commit: src/etc/mtree

2011-09-11 Thread Alan Barrett

On Tue, 06 Sep 2011, Alan Barrett wrote:

On Tue, 06 Sep 2011, Christos Zoulas wrote:
We definitely don't want to add such magic. Please revert. Otherwise 
we should go and do this in 100's of Makefiles.


I have an idea for letting make cleandir deal with this problem,
and may be willing to revert if that works out.


I have committed the changes to make cleandir, and reverted the
change to etc/mtee/Makefile.

--apb (Alan Barrett)


Re: CVS commit: src/etc/mtree

2011-09-11 Thread Christos Zoulas
In article 2011091027.gb...@apb-laptoy.apb.alt.za,
Alan Barrett  a...@cequrux.com wrote:
On Tue, 06 Sep 2011, Alan Barrett wrote:
On Tue, 06 Sep 2011, Christos Zoulas wrote:
We definitely don't want to add such magic. Please revert. Otherwise 
we should go and do this in 100's of Makefiles.

I have an idea for letting make cleandir deal with this problem,
and may be willing to revert if that works out.

I have committed the changes to make cleandir, and reverted the
change to etc/mtee/Makefile.

Thanks!

christos



Re: CVS commit: src/etc/mtree

2011-09-07 Thread David Holland
On Tue, Sep 06, 2011 at 02:53:58PM +0400, Valeriy E. Ushakov wrote:
  Are you saying you are going to add a special case for each foo.o file
  each time an accidental non-objdir build left foo.o in src? (and no,
  that's not a rhetoric question).

The fundamental problem is that the make library finds files by
implicit path searches (of various kinds) which is inherently wobbly
no matter how many bandaids are applied.

The robust approach is to change the makefiles to do

.for S in $(SRCS:M*.c)
$(OBJDIR)/$(S:T:R).o: $(S)
$(COMPILE.c) $(S) -o $(.TARGET)
.endfor

and forget about make's builtin objdir hackery entirely. Unfortunately
there are many reasons why this is not a trivial undertaking...

-- 
David A. Holland
dholl...@netbsd.org


Re: CVS commit: src/etc/mtree

2011-09-07 Thread David Laight
On Wed, Sep 07, 2011 at 08:13:20AM +, David Holland wrote:
 
 The fundamental problem is that the make library finds files by
 implicit path searches (of various kinds) which is inherently wobbly
 no matter how many bandaids are applied.

Especially in large items like libc andthe kernel...

 The robust approach is to change the makefiles to do
 
 .for S in $(SRCS:M*.c)
 $(OBJDIR)/$(S:T:R).o: $(S)
   $(COMPILE.c) $(S) -o $(.TARGET)
 .endfor

I tried to do that (without the actual commands) just to force
the .o file to depend on the relevant .c .S (or .cpp) file.
It would save make doing a lot of stat() calls searching for
the source - and always get the right one when, for example,
libc has a .S file that you don't want.

Unfortunately it all exploded due to the way lex and yacc
generate stuff.

In my case I was still using the commands from the suffix rule.

David

-- 
David Laight: da...@l8s.co.uk


Re: CVS commit: src/etc/mtree

2011-09-06 Thread Iain Hibbert
On Mon, 5 Sep 2011, Valeriy E. Ushakov wrote:

 On Mon, Sep 05, 2011 at 15:13:49 +0100, Iain Hibbert wrote:

  On Mon, 5 Sep 2011, Joerg Sonnenberger wrote:
 
   On Mon, Sep 05, 2011 at 09:57:02AM +, Alan Barrett wrote:
Module Name:src
Committed By:   apb
Date:   Mon Sep  5 09:57:02 UTC 2011
   
Modified Files:
src/etc/mtree: Makefile
   
Log Message:
Use ${.OBJDIR}/NetBSD.dist.tmp instead of just NetBSD.dist.tmp.
This fixes a problem in which NetBSD.dist.tmp had been created in
the SRCDIR by an earlier build (performed without an OBJDIR), and
the existence of the file in the SRCDIR confused a subsequent build
(performed with an OBJDIR).
  
   Do we really want to add special cases like this? There are all kinds of
   mysterious errors triggered by unclean SRCDIR, I don't think it is worth
   adding this specific hack.
 
  IMO these cases are worth handling just because if an OBJDIR is specified,
  it should be used. The alternative being that the OBJDIR is used
  sometimes?  Thats just wrong..

 So whay do you treat NetBSD.dist.tmp and NetBSD.dist differently then?

Well, I don't know but ${.OBJDIR}/NetBSD.dist is already referenced in
that file?

 If you go down that path, where do you stop?

You can sleep when you have a system that works as expected, not one that
fails with mysterious errors because even though you told it to use an
OBJDIR for work files, it was confused by some it found elsewhere. As
noted, most of this is handled invisibly by the make framework, but some
of it needs to be manually handled. I guess people fix things as they
notice them..

iain


Re: CVS commit: src/etc/mtree

2011-09-06 Thread Valeriy E. Ushakov
On Tue, Sep 06, 2011 at 08:43:10 +0100, Iain Hibbert wrote:

 On Mon, 5 Sep 2011, Valeriy E. Ushakov wrote:
 
  On Mon, Sep 05, 2011 at 15:13:49 +0100, Iain Hibbert wrote:
 
   On Mon, 5 Sep 2011, Joerg Sonnenberger wrote:
  
On Mon, Sep 05, 2011 at 09:57:02AM +, Alan Barrett wrote:
 Module Name:  src
 Committed By: apb
 Date: Mon Sep  5 09:57:02 UTC 2011

 Modified Files:
   src/etc/mtree: Makefile

 Log Message:
 Use ${.OBJDIR}/NetBSD.dist.tmp instead of just NetBSD.dist.tmp.
 This fixes a problem in which NetBSD.dist.tmp had been created in
 the SRCDIR by an earlier build (performed without an OBJDIR), and
 the existence of the file in the SRCDIR confused a subsequent build
 (performed with an OBJDIR).
   
Do we really want to add special cases like this? There are all kinds of
mysterious errors triggered by unclean SRCDIR, I don't think it is worth
adding this specific hack.
  
   IMO these cases are worth handling just because if an OBJDIR is specified,
   it should be used. The alternative being that the OBJDIR is used
   sometimes?  Thats just wrong..
 
  So whay do you treat NetBSD.dist.tmp and NetBSD.dist differently then?
 
 Well, I don't know but ${.OBJDIR}/NetBSD.dist is already referenced in
 that file?
 
  If you go down that path, where do you stop?
 
 You can sleep when you have a system that works as expected, not one that
 fails with mysterious errors because even though you told it to use an
 OBJDIR for work files, it was confused by some it found elsewhere. As
 noted, most of this is handled invisibly by the make framework, but some
 of it needs to be manually handled. I guess people fix things as they
 notice them..

Are you saying you are going to add a special case for each foo.o file
each time an accidental non-objdir build left foo.o in src? (and no,
that's not a rhetoric question).

-uwe


Re: CVS commit: src/etc/mtree

2011-09-06 Thread Christos Zoulas
In article 20110905111014.gb12...@britannica.bec.de,
Joerg Sonnenberger  jo...@britannica.bec.de wrote:
On Mon, Sep 05, 2011 at 09:57:02AM +, Alan Barrett wrote:
 Module Name: src
 Committed By:apb
 Date:Mon Sep  5 09:57:02 UTC 2011
 
 Modified Files:
  src/etc/mtree: Makefile
 
 Log Message:
 Use ${.OBJDIR}/NetBSD.dist.tmp instead of just NetBSD.dist.tmp.
 This fixes a problem in which NetBSD.dist.tmp had been created in
 the SRCDIR by an earlier build (performed without an OBJDIR), and
 the existence of the file in the SRCDIR confused a subsequent build
 (performed with an OBJDIR).

Do we really want to add special cases like this? There are all kinds of
mysterious errors triggered by unclean SRCDIR, I don't think it is worth
adding this specific hack.

We definitely don't want to add such magic. Please revert. Otherwise we should
go and do this in 100's of Makefiles.

christos



Re: CVS commit: src/etc/mtree

2011-09-06 Thread Alan Barrett

On Tue, 06 Sep 2011, Christos Zoulas wrote:

Modified Files:
src/etc/mtree: Makefile

Log Message:
Use ${.OBJDIR}/NetBSD.dist.tmp instead of just NetBSD.dist.tmp.
This fixes a problem in which NetBSD.dist.tmp had been created in
the SRCDIR by an earlier build (performed without an OBJDIR), and
the existence of the file in the SRCDIR confused a subsequent build
(performed with an OBJDIR).


We definitely don't want to add such magic. Please 
revert. Otherwise we should go and do this in 100's of 
Makefiles.


I certainly see no reason to make similar changes in hundreds of 
Makefiles; only in the few places where people actually encounter 
(and report) problems traceable to this sort of issue.  There have 
been only a few such issues, and we have fixed all the others 
(elsewhere under src/etc).


I have an idea for letting make cleandir deal with this problem,
and may be willing to revert if that works out.

--apb (Alan Barrett)


Re: CVS commit: src/etc/mtree

2011-09-06 Thread Iain Hibbert
On Tue, 6 Sep 2011, Valeriy E. Ushakov wrote:

 On Tue, Sep 06, 2011 at 08:43:10 +0100, Iain Hibbert wrote:

  On Mon, 5 Sep 2011, Valeriy E. Ushakov wrote:
 
   On Mon, Sep 05, 2011 at 15:13:49 +0100, Iain Hibbert wrote:
  
On Mon, 5 Sep 2011, Joerg Sonnenberger wrote:
   
 On Mon, Sep 05, 2011 at 09:57:02AM +, Alan Barrett wrote:
  Module Name:src
  Committed By:   apb
  Date:   Mon Sep  5 09:57:02 UTC 2011
 
  Modified Files:
  src/etc/mtree: Makefile
 
  Log Message:
  Use ${.OBJDIR}/NetBSD.dist.tmp instead of just NetBSD.dist.tmp.
  This fixes a problem in which NetBSD.dist.tmp had been created in
  the SRCDIR by an earlier build (performed without an OBJDIR), and
  the existence of the file in the SRCDIR confused a subsequent build
  (performed with an OBJDIR).

 Do we really want to add special cases like this? There are all kinds 
 of
 mysterious errors triggered by unclean SRCDIR, I don't think it is 
 worth
 adding this specific hack.
   
IMO these cases are worth handling just because if an OBJDIR is 
specified,
it should be used. The alternative being that the OBJDIR is used
sometimes?  Thats just wrong..
  
   So whay do you treat NetBSD.dist.tmp and NetBSD.dist differently then?
 
  Well, I don't know but ${.OBJDIR}/NetBSD.dist is already referenced in
  that file?
 
   If you go down that path, where do you stop?
 
  You can sleep when you have a system that works as expected, not one that
  fails with mysterious errors because even though you told it to use an
  OBJDIR for work files, it was confused by some it found elsewhere. As
  noted, most of this is handled invisibly by the make framework, but some
  of it needs to be manually handled. I guess people fix things as they
  notice them..

 Are you saying you are going to add a special case for each foo.o file
 each time an accidental non-objdir build left foo.o in src? (and no,
 that's not a rhetoric question).

clearly not, since the foo.o files are already handled by a general case

iain


Re: CVS commit: src/etc/mtree

2011-09-05 Thread Joerg Sonnenberger
On Mon, Sep 05, 2011 at 09:57:02AM +, Alan Barrett wrote:
 Module Name:  src
 Committed By: apb
 Date: Mon Sep  5 09:57:02 UTC 2011
 
 Modified Files:
   src/etc/mtree: Makefile
 
 Log Message:
 Use ${.OBJDIR}/NetBSD.dist.tmp instead of just NetBSD.dist.tmp.
 This fixes a problem in which NetBSD.dist.tmp had been created in
 the SRCDIR by an earlier build (performed without an OBJDIR), and
 the existence of the file in the SRCDIR confused a subsequent build
 (performed with an OBJDIR).

Do we really want to add special cases like this? There are all kinds of
mysterious errors triggered by unclean SRCDIR, I don't think it is worth
adding this specific hack.

Joerg


Re: CVS commit: src/etc/mtree

2011-09-05 Thread Alan Barrett

On Mon, 05 Sep 2011, Joerg Sonnenberger wrote:

On Mon, Sep 05, 2011 at 09:57:02AM +, Alan Barrett wrote:

Modified Files:
src/etc/mtree: Makefile

Log Message:
Use ${.OBJDIR}/NetBSD.dist.tmp instead of just NetBSD.dist.tmp.


Do we really want to add special cases like this? There are all 
kinds of mysterious errors triggered by unclean SRCDIR, I don't 
think it is worth adding this specific hack.


I am not sure.  We have done this sort of thing before, for other 
files under src/etc, and I think it's reasonable to treat src/etc 
differently from the rest of the source tree because etcupdate and 
postinstall may run make in src/etc without the user being aware 
that their source directory is being polluted.


On the other hand, if we can get postinstall and etcupdate to run 
make clean afterwards, then I'd be happier for this and similar 
special cases to be removed.


--apb (Alan Barrett)


Re: CVS commit: src/etc/mtree

2011-09-05 Thread Iain Hibbert
On Mon, 5 Sep 2011, Joerg Sonnenberger wrote:

 On Mon, Sep 05, 2011 at 09:57:02AM +, Alan Barrett wrote:
  Module Name:src
  Committed By:   apb
  Date:   Mon Sep  5 09:57:02 UTC 2011
 
  Modified Files:
  src/etc/mtree: Makefile
 
  Log Message:
  Use ${.OBJDIR}/NetBSD.dist.tmp instead of just NetBSD.dist.tmp.
  This fixes a problem in which NetBSD.dist.tmp had been created in
  the SRCDIR by an earlier build (performed without an OBJDIR), and
  the existence of the file in the SRCDIR confused a subsequent build
  (performed with an OBJDIR).

 Do we really want to add special cases like this? There are all kinds of
 mysterious errors triggered by unclean SRCDIR, I don't think it is worth
 adding this specific hack.

IMO these cases are worth handling just because if an OBJDIR is specified,
it should be used. The alternative being that the OBJDIR is used
sometimes?  Thats just wrong..

iain


Re: CVS commit: src/etc/mtree

2011-09-05 Thread Valeriy E. Ushakov
On Mon, Sep 05, 2011 at 15:13:49 +0100, Iain Hibbert wrote:

 On Mon, 5 Sep 2011, Joerg Sonnenberger wrote:
 
  On Mon, Sep 05, 2011 at 09:57:02AM +, Alan Barrett wrote:
   Module Name:  src
   Committed By: apb
   Date: Mon Sep  5 09:57:02 UTC 2011
  
   Modified Files:
 src/etc/mtree: Makefile
  
   Log Message:
   Use ${.OBJDIR}/NetBSD.dist.tmp instead of just NetBSD.dist.tmp.
   This fixes a problem in which NetBSD.dist.tmp had been created in
   the SRCDIR by an earlier build (performed without an OBJDIR), and
   the existence of the file in the SRCDIR confused a subsequent build
   (performed with an OBJDIR).
 
  Do we really want to add special cases like this? There are all kinds of
  mysterious errors triggered by unclean SRCDIR, I don't think it is worth
  adding this specific hack.
 
 IMO these cases are worth handling just because if an OBJDIR is specified,
 it should be used. The alternative being that the OBJDIR is used
 sometimes?  Thats just wrong..

So whay do you treat NetBSD.dist.tmp and NetBSD.dist differently then?
If you go down that path, where do you stop?

-uwe


Re: CVS commit: src/etc/mtree

2011-09-05 Thread David Laight
On Mon, Sep 05, 2011 at 03:13:49PM +0100, Iain Hibbert wrote:
 
 IMO these cases are worth handling just because if an OBJDIR is specified,
 it should be used. The alternative being that the OBJDIR is used
 sometimes?  Thats just wrong..

A lot of the OBJDIR support happens by magic in make.
Mostly make will look for files in SRCDIR before OBJDIR.

David

-- 
David Laight: da...@l8s.co.uk


Re: CVS commit: src/etc/mtree

2011-01-10 Thread David Young
On Mon, Jan 10, 2011 at 05:17:37PM +, Nicolas Joly wrote:
 Module Name:  src
 Committed By: njoly
 Date: Mon Jan 10 17:17:36 UTC 2011
 
 Modified Files:
   src/etc/mtree: NetBSD.dist.tests
 
 Log Message:
 Add lib/libc/sys test dirs.

Thanks!

Dave

-- 
David Young OJC Technologies
dyo...@ojctech.com  Urbana, IL * (217) 278-3933


Re: CVS commit: src/etc/mtree

2011-01-01 Thread Adam Hamsik

On Jan,Saturday 1 2011, at 11:11 PM, Adam Hamsik wrote:

 Module Name:  src
 Committed By: haad
 Date: Sat Jan  1 22:11:45 UTC 2011
 
 Modified Files:
   src/etc/mtree: NetBSD.dist.base
 
 Log Message:
 Remove optional keyword from directory definition.
 
 

This fixes PR misc/44308

Regards

Adam.



CVS commit: src/etc/mtree

2010-01-18 Thread Iain Hibbert
Module Name:src
Committed By:   plunky
Date:   Mon Jan 18 10:25:29 UTC 2010

Modified Files:
src/etc/mtree: Makefile

Log Message:
also clean up NetBSD.dist.tmp as if a second build is done without the
NetBSD.dist changing, the tmp file will remain.


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

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