Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src Merge autofs support from: Tomohiro Kusumi
details: https://anonhg.NetBSD.org/src/rev/e9963dd417c7
branches: trunk
changeset: 828882:e9963dd417c7
user: christos <christos%NetBSD.org@localhost>
date: Tue Jan 09 03:31:12 2018 +0000
description:
Merge autofs support from: Tomohiro Kusumi
XXX: Does not work yet
diffstat:
distrib/sets/lists/base/mi | 8 +-
distrib/sets/lists/comp/mi | 4 +-
distrib/sets/lists/debug/mi | 12 +-
distrib/sets/lists/etc/mi | 13 +-
distrib/sets/lists/man/mi | 20 +-
distrib/sets/lists/modules/mi | 4 +-
etc/MAKEDEV.tmpl | 7 +-
etc/Makefile | 6 +-
etc/auto_master | 9 +
etc/autofs/Makefile | 14 +
etc/autofs/include_ldap | 55 +
etc/autofs/include_nis | 14 +
etc/autofs/include_nis_nullfs | 180 +++++
etc/autofs/special_hosts | 17 +
etc/autofs/special_media | 130 ++++
etc/autofs/special_noauto | 29 +
etc/autofs/special_null | 4 +
etc/defaults/rc.conf | 5 +-
etc/mtree/NetBSD.dist.base | 4 +-
etc/mtree/special | 10 +-
etc/rc.d/Makefile | 4 +-
etc/rc.d/automount | 31 +
etc/rc.d/automountd | 19 +
etc/rc.d/autounmountd | 18 +
include/mntopts.h | 6 +-
lib/libc/sys/kqueue.2 | 7 +-
sbin/mount/mount.8 | 14 +-
share/man/man5/Makefile | 4 +-
share/man/man5/autofs.5 | 121 +++
share/man/man5/rc.conf.5 | 45 +-
share/man/man7/hier.7 | 8 +-
sys/arch/amd64/conf/ALL | 5 +-
sys/arch/amd64/conf/GENERIC | 5 +-
sys/arch/amd64/conf/MODULAR | 3 +-
sys/arch/amd64/conf/XEN3_DOM0 | 5 +-
sys/arch/amd64/conf/XEN3_DOMU | 5 +-
sys/conf/files | 3 +-
sys/conf/filesystems.config | 4 +-
sys/conf/majors | 15 +-
sys/fs/Makefile | 4 +-
sys/fs/autofs/Makefile | 7 +
sys/fs/autofs/autofs.c | 560 ++++++++++++++++++
sys/fs/autofs/autofs.h | 196 ++++++
sys/fs/autofs/autofs_ioctl.h | 111 +++
sys/fs/autofs/autofs_mount.h | 47 +
sys/fs/autofs/autofs_vfsops.c | 503 ++++++++++++++++
sys/fs/autofs/autofs_vnops.c | 692 ++++++++++++++++++++++
sys/fs/autofs/files.autofs | 9 +
sys/kern/kern_event.c | 54 +-
sys/kern/vfs_syscalls.c | 9 +-
sys/modules/Makefile | 3 +-
sys/modules/autofs/Makefile | 13 +
sys/sys/event.h | 7 +-
sys/sys/fstypes.h | 15 +-
sys/sys/mount.h | 9 +-
sys/sys/vnode.h | 6 +-
usr.bin/showmount/showmount.8 | 12 +-
usr.bin/showmount/showmount.c | 35 +-
usr.sbin/Makefile | 6 +-
usr.sbin/autofs/Makefile | 18 +
usr.sbin/autofs/auto_master.5 | 393 ++++++++++++
usr.sbin/autofs/automount.8 | 134 ++++
usr.sbin/autofs/automount.c | 350 +++++++++++
usr.sbin/autofs/automountd.8 | 126 ++++
usr.sbin/autofs/automountd.c | 601 +++++++++++++++++++
usr.sbin/autofs/autounmountd.8 | 110 +++
usr.sbin/autofs/autounmountd.c | 355 +++++++++++
usr.sbin/autofs/common.c | 1212 ++++++++++++++++++++++++++++++++++++++++
usr.sbin/autofs/common.h | 120 +++
usr.sbin/autofs/defined.c | 263 ++++++++
usr.sbin/autofs/log.c | 208 ++++++
usr.sbin/autofs/popen.c | 198 ++++++
usr.sbin/autofs/token.l | 63 ++
usr.sbin/fstyp/Makefile | 28 +
usr.sbin/fstyp/cd9660.c | 69 ++
usr.sbin/fstyp/ext2fs.c | 91 +++
usr.sbin/fstyp/fstyp.8 | 148 ++++
usr.sbin/fstyp/fstyp.c | 260 ++++++++
usr.sbin/fstyp/fstyp.h | 55 +
usr.sbin/fstyp/msdosfs.c | 183 ++++++
usr.sbin/fstyp/msdosfs.h | 147 ++++
usr.sbin/fstyp/ntfs.c | 170 +++++
usr.sbin/fstyp/ufs.c | 115 +++
usr.sbin/fstyp/zfs.c | 83 ++
usr.sbin/mountd/mountd.c | 8 +-
85 files changed, 8589 insertions(+), 84 deletions(-)
diffs (truncated from 9772 to 300 lines):
diff -r 21684432297c -r e9963dd417c7 distrib/sets/lists/base/mi
--- a/distrib/sets/lists/base/mi Tue Jan 09 01:53:55 2018 +0000
+++ b/distrib/sets/lists/base/mi Tue Jan 09 03:31:12 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.1166 2018/01/07 20:59:24 jmcneill Exp $
+# $NetBSD: mi,v 1.1167 2018/01/09 03:31:13 christos Exp $
#
# Note: Don't delete entries from here - mark them as "obsolete" instead,
# unless otherwise stated below.
@@ -91,6 +91,7 @@
./etc/X11/xserver base-x11-root
./etc/X11/xsm base-x11-root
./etc/atf base-atf-bin
+./etc/autofs base-sys-root
./etc/cgd base-sys-root
./etc/defaults base-sys-root
./etc/disklabels base-obsolete obsolete
@@ -1111,6 +1112,7 @@
./usr/include/event2 base-c-usr
./usr/include/filecorefs base-c-usr
./usr/include/fs base-c-usr
+./usr/include/fs/autofs base-c-usr
./usr/include/fs/efs base-c-usr
./usr/include/fs/hfs base-c-usr
./usr/include/fs/hfsp base-obsolete obsolete
@@ -1620,6 +1622,9 @@
./usr/sbin/arp base-netutil-bin
./usr/sbin/audit-packages base-pkgutil-bin
./usr/sbin/authpf base-pf-bin pf
+./usr/sbin/automount base-sysutil-root
+./usr/sbin/automountd base-sysutil-root
+./usr/sbin/autounmountd base-sysutil-root
./usr/sbin/bootpd base-bootserver-bin
./usr/sbin/bootpef base-bootserver-bin
./usr/sbin/bootpgw base-bootserver-bin
@@ -1681,6 +1686,7 @@
./usr/sbin/flush base-obsolete obsolete
./usr/sbin/fsinfo base-sysutil-bin
./usr/sbin/fssconfig base-sysutil-bin
+./usr/sbin/fstyp base-sysutil-bin
./usr/sbin/ftp-proxy base-pf-bin pf
./usr/sbin/fusermount base-refuse-bin
./usr/sbin/fwctl base-sysutil-bin
diff -r 21684432297c -r e9963dd417c7 distrib/sets/lists/comp/mi
--- a/distrib/sets/lists/comp/mi Tue Jan 09 01:53:55 2018 +0000
+++ b/distrib/sets/lists/comp/mi Tue Jan 09 03:31:12 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.2166 2018/01/06 09:31:03 snj Exp $
+# $NetBSD: mi,v 1.2167 2018/01/09 03:31:13 christos Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
./etc/mtree/set.comp comp-sys-root
@@ -827,6 +827,8 @@
./usr/include/fnmatch.h comp-c-include
./usr/include/form.h comp-c-include
./usr/include/frame.h comp-obsolete obsolete
+./usr/include/fs/autofs/autofs_mount.h comp-c-include
+./usr/include/fs/autofs/autofs_ioctl.h comp-c-include
./usr/include/fs/efs/efs.h comp-c-include
./usr/include/fs/efs/efs_mount.h comp-c-include
./usr/include/fs/efs/efs_sb.h comp-c-include
diff -r 21684432297c -r e9963dd417c7 distrib/sets/lists/debug/mi
--- a/distrib/sets/lists/debug/mi Tue Jan 09 01:53:55 2018 +0000
+++ b/distrib/sets/lists/debug/mi Tue Jan 09 03:31:12 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.232 2017/12/10 15:41:08 christos Exp $
+# $NetBSD: mi,v 1.233 2018/01/09 03:31:13 christos Exp $
./etc/mtree/set.debug comp-sys-root
./usr/lib comp-sys-usr compatdir
./usr/lib/i18n/libBIG5_g.a comp-c-debuglib debuglib,compatfile
@@ -1012,6 +1012,7 @@
./usr/libdata/debug/usr/sbin/arp.debug comp-netutil-debug debug
./usr/libdata/debug/usr/sbin/audit-packages.debug comp-obsolete obsolete
./usr/libdata/debug/usr/sbin/authpf.debug comp-pf-debug pf,debug
+./usr/libdata/debug/usr/sbin/automount.debug comp-sysutil-debug debug
./usr/libdata/debug/usr/sbin/bootpd.debug comp-bootserver-debug debug
./usr/libdata/debug/usr/sbin/bootpef.debug comp-bootserver-debug debug
./usr/libdata/debug/usr/sbin/bootpgw.debug comp-bootserver-debug debug
@@ -1061,6 +1062,7 @@
./usr/libdata/debug/usr/sbin/flashctl.debug comp-sysutil-debug debug
./usr/libdata/debug/usr/sbin/fsinfo.debug comp-sysutil-debug debug
./usr/libdata/debug/usr/sbin/fssconfig.debug comp-sysutil-debug debug
+./usr/libdata/debug/usr/sbin/fstyp.debug comp-sysutil-debug debug
./usr/libdata/debug/usr/sbin/ftp-proxy.debug comp-pf-debug pf,debug
./usr/libdata/debug/usr/sbin/fusermount.debug comp-refuse-debug debug
./usr/libdata/debug/usr/sbin/fwctl.debug comp-sysutil-debug debug
@@ -1159,10 +1161,10 @@
./usr/libdata/debug/usr/sbin/npfctl.debug comp-obsolete obsolete
./usr/libdata/debug/usr/sbin/npfd.debug comp-npf-debug npf,debug
./usr/libdata/debug/usr/sbin/npftest.debug comp-npf-debug npf,rump,debug,pic
-./usr/libdata/debug/usr/sbin/nsd.debug comp-nsd-debug nsd
./usr/libdata/debug/usr/sbin/nsd-checkconf.debug comp-nsd-debug nsd
./usr/libdata/debug/usr/sbin/nsd-checkzone.debug comp-nsd-debug nsd
./usr/libdata/debug/usr/sbin/nsd-control.debug comp-nsd-debug nsd
+./usr/libdata/debug/usr/sbin/nsd.debug comp-nsd-debug nsd
./usr/libdata/debug/usr/sbin/nsec3hash.debug comp-bind-debug debug
./usr/libdata/debug/usr/sbin/ntp-keygen.debug comp-ntp-debug debug
./usr/libdata/debug/usr/sbin/ntpd.debug comp-ntp-debug debug
@@ -1949,9 +1951,9 @@
./usr/libdata/debug/usr/tests/lib/libc/ieeefp/t_subnormal.debug tests-obsolete obsolete,compattestfile
./usr/libdata/debug/usr/tests/lib/libc/inet/t_inet_addr.debug tests-lib-debug debug,atf,compattestfile
./usr/libdata/debug/usr/tests/lib/libc/inet/t_inet_network.debug tests-lib-debug debug,atf,compattestfile
+./usr/libdata/debug/usr/tests/lib/libc/locale/t_btowc.debug tests-lib-debug debug,atf,compattestfile
./usr/libdata/debug/usr/tests/lib/libc/locale/t_ctype1.debug tests-obsolete obsolete,compattestfile
./usr/libdata/debug/usr/tests/lib/libc/locale/t_ctype2.debug tests-obsolete obsolete,compattestfile
-./usr/libdata/debug/usr/tests/lib/libc/locale/t_btowc.debug tests-lib-debug debug,atf,compattestfile
./usr/libdata/debug/usr/tests/lib/libc/locale/t_digittoint.debug tests-lib-debug debug,atf,compattestfile
./usr/libdata/debug/usr/tests/lib/libc/locale/t_ducet.debug tests-lib-debug debug,atf,compattestfile
./usr/libdata/debug/usr/tests/lib/libc/locale/t_io.debug tests-lib-debug debug,atf,compattestfile
@@ -2170,8 +2172,8 @@
./usr/libdata/debug/usr/tests/lib/libm/t_cosh.debug tests-lib-debug debug,atf,compattestfile
./usr/libdata/debug/usr/tests/lib/libm/t_erf.debug tests-lib-debug debug,atf,compattestfile
./usr/libdata/debug/usr/tests/lib/libm/t_exp.debug tests-lib-debug debug,atf,compattestfile
+./usr/libdata/debug/usr/tests/lib/libm/t_fe_round.debug tests-lib-debug debug,atf,compattestfile
./usr/libdata/debug/usr/tests/lib/libm/t_fenv.debug tests-lib-debug debug,atf,compattestfile
-./usr/libdata/debug/usr/tests/lib/libm/t_fe_round.debug tests-lib-debug debug,atf,compattestfile
./usr/libdata/debug/usr/tests/lib/libm/t_floor.debug tests-obsolete obsolete,compattestfile
./usr/libdata/debug/usr/tests/lib/libm/t_fmod.debug tests-lib-debug debug,atf,compattestfile
./usr/libdata/debug/usr/tests/lib/libm/t_hypot.debug tests-lib-debug debug,atf,compattestfile
@@ -2313,8 +2315,8 @@
./usr/libdata/debug/usr/tests/rump/rumpkern/t_signals.debug tests-syscall-debug debug,atf,rump
./usr/libdata/debug/usr/tests/rump/rumpkern/t_threads.debug tests-syscall-debug debug,atf,rump
./usr/libdata/debug/usr/tests/rump/rumpkern/t_tsleep.debug tests-syscall-debug debug,atf,rump
+./usr/libdata/debug/usr/tests/rump/rumpkern/t_vm.debug tests-syscall-debug debug,atf,rump
./usr/libdata/debug/usr/tests/rump/rumpkern/t_workqueue.debug tests-syscall-debug debug,atf,rump
-./usr/libdata/debug/usr/tests/rump/rumpkern/t_vm.debug tests-syscall-debug debug,atf,rump
./usr/libdata/debug/usr/tests/rump/rumpvfs/t_basic.debug tests-syscall-debug debug,atf,rump
./usr/libdata/debug/usr/tests/rump/rumpvfs/t_etfs.debug tests-syscall-debug debug,atf,rump
./usr/libdata/debug/usr/tests/rump/rumpvfs/t_p2kifs.debug tests-syscall-debug debug,atf,rump
diff -r 21684432297c -r e9963dd417c7 distrib/sets/lists/etc/mi
--- a/distrib/sets/lists/etc/mi Tue Jan 09 01:53:55 2018 +0000
+++ b/distrib/sets/lists/etc/mi Tue Jan 09 03:31:12 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.249 2017/06/18 20:24:59 christos Exp $
+# $NetBSD: mi,v 1.250 2018/01/09 03:31:14 christos Exp $
#
# Note: end-user configuration files that are moved to another location
# should not be marked "obsolete"; they should just be removed from
@@ -17,6 +17,14 @@
./etc/atf/atf-run.hooks etc-atf-etc atf
./etc/atf/common.conf etc-atf-etc atf
./etc/audit-packages.conf etc-obsolete obsolete
+./etc/auto_master etc-sys-etc
+./etc/autofs/include_ldap etc-sys-etc
+./etc/autofs/include_nis etc-sys-etc
+./etc/autofs/include_nis_nullfs etc-sys-etc
+./etc/autofs/special_hosts etc-sys-etc
+./etc/autofs/special_media etc-sys-etc
+./etc/autofs/special_noauto etc-sys-etc
+./etc/autofs/special_null etc-sys-etc
./etc/bluetooth etc-sys-etc
./etc/bluetooth/bluetooth.conf etc-obsolete obsolete
./etc/bluetooth/btattach.conf etc-sys-etc
@@ -176,6 +184,9 @@
./etc/rc.d/altqd etc-router-rc
./etc/rc.d/amd etc-amd-rc
./etc/rc.d/apmd etc-sys-rc
+./etc/rc.d/automount etc-sys-rc
+./etc/rc.d/automountd etc-sys-rc
+./etc/rc.d/autounmountd etc-sys-rc
./etc/rc.d/blacklistd etc-sys-rc
./etc/rc.d/bluetooth etc-sys-rc
./etc/rc.d/bootconf.sh etc-sys-rc
diff -r 21684432297c -r e9963dd417c7 distrib/sets/lists/man/mi
--- a/distrib/sets/lists/man/mi Tue Jan 09 01:53:55 2018 +0000
+++ b/distrib/sets/lists/man/mi Tue Jan 09 03:31:12 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.1568 2017/12/28 23:31:07 christos Exp $
+# $NetBSD: mi,v 1.1569 2018/01/09 03:31:14 christos Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
#
@@ -2057,6 +2057,8 @@
./usr/share/man/cat5/ar.0 man-sys-catman .cat
./usr/share/man/cat5/atf-formats.0 man-atf-catman .cat,atf
./usr/share/man/cat5/audit-packages.conf.0 man-obsolete obsolete
+./usr/share/man/cat5/auto_master.0 man-sysutil-catman .cat
+./usr/share/man/cat5/autofs.0 man-sysutil-catman .cat
./usr/share/man/cat5/blacklistd.conf.0 man-sysutil-catman .cat
./usr/share/man/cat5/bluetooth.conf.0 man-obsolete obsolete
./usr/share/man/cat5/body_checks.0 man-postfix-catman postfix,.cat
@@ -2368,6 +2370,9 @@
./usr/share/man/cat8/atari/makedev.0 man-obsolete obsolete
./usr/share/man/cat8/atrun.0 man-cron-catman .cat
./usr/share/man/cat8/authpf.0 man-pf-catman pf,.cat
+./usr/share/man/cat8/automount.0 man-sysutil-catman .cat
+./usr/share/man/cat8/automountd.0 man-sysutil-catman .cat
+./usr/share/man/cat8/autounmountd.0 man-sysutil-catman .cat
./usr/share/man/cat8/bad144.0 man-sysutil-catman .cat
./usr/share/man/cat8/badsect.0 man-sysutil-catman .cat
./usr/share/man/cat8/bebox/MAKEDEV.0 man-obsolete obsolete
@@ -2515,6 +2520,7 @@
./usr/share/man/cat8/fsinfo.0 man-sysutil-catman .cat
./usr/share/man/cat8/fsirand.0 man-sysutil-catman .cat
./usr/share/man/cat8/fssconfig.0 man-sysutil-catman .cat
+./usr/share/man/cat8/fstyp.0 man-sysutil-catman .cat
./usr/share/man/cat8/ftp-proxy.0 man-pf-catman pf,.cat
./usr/share/man/cat8/ftpd.0 man-netutil-catman .cat
./usr/share/man/cat8/fusermount.0 man-refuse-catman .cat
@@ -5103,6 +5109,8 @@
./usr/share/man/html5/ar.html man-sys-htmlman html
./usr/share/man/html5/atf-formats.html man-atf-htmlman html,atf
./usr/share/man/html5/audit-packages.conf.html man-obsolete obsolete
+./usr/share/man/html5/auto_master.html man-sysutil-htmlman html
+./usr/share/man/html5/autofs.html man-sysutil-htmlman html
./usr/share/man/html5/blacklistd.conf.html man-sysutil-htmlman html
./usr/share/man/html5/body_checks.html man-postfix-htmlman postfix,html
./usr/share/man/html5/boot.cfg.html man-sys-htmlman html
@@ -5365,6 +5373,9 @@
./usr/share/man/html8/atari/installboot.html man-sysutil-htmlman html
./usr/share/man/html8/atrun.html man-cron-htmlman html
./usr/share/man/html8/authpf.html man-pf-htmlman pf,html
+./usr/share/man/html8/automount.html man-sysutil-htmlman html
+./usr/share/man/html8/automountd.html man-sysutil-htmlman html
+./usr/share/man/html8/autounmountd.html man-sysutil-htmlman html
./usr/share/man/html8/bad144.html man-sysutil-htmlman html
./usr/share/man/html8/badsect.html man-sysutil-htmlman html
./usr/share/man/html8/bioctl.html man-sysutil-htmlman html
@@ -5482,6 +5493,7 @@
./usr/share/man/html8/fsinfo.html man-sysutil-htmlman html
./usr/share/man/html8/fsirand.html man-sysutil-htmlman html
./usr/share/man/html8/fssconfig.html man-sysutil-htmlman html
+./usr/share/man/html8/fstyp.html man-sysutil-htmlman html
./usr/share/man/html8/ftp-proxy.html man-pf-htmlman pf,html
./usr/share/man/html8/ftpd.html man-netutil-htmlman html
./usr/share/man/html8/fusermount.html man-refuse-htmlman html
@@ -8081,6 +8093,8 @@
./usr/share/man/man5/ar.5 man-sys-man .man
./usr/share/man/man5/atf-formats.5 man-atf-man .man,atf
./usr/share/man/man5/audit-packages.conf.5 man-obsolete obsolete
+./usr/share/man/man5/auto_master.5 man-sysutil-man .man
+./usr/share/man/man5/autofs.5 man-sysutil-man .man
./usr/share/man/man5/blacklistd.conf.5 man-sysutil-man .man
./usr/share/man/man5/bluetooth.conf.5 man-obsolete obsolete
./usr/share/man/man5/body_checks.5 man-postfix-man postfix,.man
@@ -8391,6 +8405,9 @@
./usr/share/man/man8/atari/makedev.8 man-obsolete obsolete
./usr/share/man/man8/atrun.8 man-cron-man .man
./usr/share/man/man8/authpf.8 man-pf-man pf,.man
+./usr/share/man/man8/automount.8 man-sysutil-man .man
+./usr/share/man/man8/automountd.8 man-sysutil-man .man
+./usr/share/man/man8/autounmountd.8 man-sysutil-man .man
./usr/share/man/man8/bad144.8 man-sysutil-man .man
./usr/share/man/man8/badsect.8 man-sysutil-man .man
./usr/share/man/man8/bebox/MAKEDEV.8 man-obsolete obsolete
@@ -8538,6 +8555,7 @@
./usr/share/man/man8/fsinfo.8 man-sysutil-man .man
./usr/share/man/man8/fsirand.8 man-sysutil-man .man
./usr/share/man/man8/fssconfig.8 man-sysutil-man .man
+./usr/share/man/man8/fstyp.8 man-sysutil-man .man
./usr/share/man/man8/ftp-proxy.8 man-pf-man pf,.man
./usr/share/man/man8/ftpd.8 man-netutil-man .man
./usr/share/man/man8/fusermount.8 man-refuse-man .man
diff -r 21684432297c -r e9963dd417c7 distrib/sets/lists/modules/mi
--- a/distrib/sets/lists/modules/mi Tue Jan 09 01:53:55 2018 +0000
+++ b/distrib/sets/lists/modules/mi Tue Jan 09 03:31:12 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.113 2017/12/29 02:18:34 christos Exp $
+# $NetBSD: mi,v 1.114 2018/01/09 03:31:14 christos Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
#
@@ -28,6 +28,8 @@
./@MODULEDIR@/ataraid/ataraid.kmod base-obsolete obsolete
./@MODULEDIR@/audio base-kernel-modules kmod
./@MODULEDIR@/audio/audio.kmod base-kernel-modules kmod
+./@MODULEDIR@/autofs base-kernel-modules kmod
+./@MODULEDIR@/autofs/autofs.kmod base-kernel-modules kmod
./@MODULEDIR@/blowfish base-kernel-modules kmod
./@MODULEDIR@/blowfish/blowfish.kmod base-kernel-modules kmod
./@MODULEDIR@/bpf base-kernel-modules kmod
diff -r 21684432297c -r e9963dd417c7 etc/MAKEDEV.tmpl
--- a/etc/MAKEDEV.tmpl Tue Jan 09 01:53:55 2018 +0000
+++ b/etc/MAKEDEV.tmpl Tue Jan 09 03:31:12 2018 +0000
@@ -1,5 +1,5 @@
#!/bin/sh -
-# $NetBSD: MAKEDEV.tmpl,v 1.188 2017/12/05 19:17:11 jmcneill Exp $
+# $NetBSD: MAKEDEV.tmpl,v 1.189 2018/01/09 03:31:14 christos Exp $
#
# Copyright (c) 2003,2007,2008 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -842,6 +842,7 @@
makedev hdmicec0
makedev dtrace
makedev veriexec
+ makedev autofs
makedev local # do this last
;;
@@ -2227,6 +2228,10 @@
mkdev nvme$unit c %nvme_chr% $(($unit * 65536))
;;
+autofs)
+ mkdev autofs c %autofs_chr% 0 600
+ ;;
+
midevend)
%MI_DEVICES_END%
local)
Home |
Main Index |
Thread Index |
Old Index