Add the sysmon device.

This commit is contained in:
simonb 2002-07-31 05:02:12 +00:00
parent fc50f2e011
commit 2b04c30a33
1 changed files with 14 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh - #!/bin/sh -
# $NetBSD: MAKEDEV,v 1.6 2002/07/11 00:19:08 simonb Exp $ # $NetBSD: MAKEDEV,v 1.7 2002/07/31 05:02:12 simonb Exp $
# #
# Copyright (c) 1990 The Regents of the University of California. # Copyright (c) 1990 The Regents of the University of California.
# All rights reserved. # All rights reserved.
@ -107,6 +107,7 @@
# uk* unknown SCSI device # uk* unknown SCSI device
# systrace syscall tracer # systrace syscall tracer
# kttcp kernel ttcp helper # kttcp kernel ttcp helper
# sysmon System Monitoring hardware
dialin=0 dialin=0
dialout=524288 dialout=524288
@ -140,6 +141,7 @@ all)
sh $0 clockctl sh $0 clockctl
sh $0 systrace sh $0 systrace
sh $0 kttcp sh $0 kttcp
sh $0 sysmon
;; ;;
minimal) minimal)
@ -627,6 +629,17 @@ kttcp)
chmod 600 kttcp chmod 600 kttcp
;; ;;
sysmon)
major=74
rm -f sysmon
mknod sysmon c $major 0
chmod 644 sysmon
rm -f watchdog
mknod watchdog c $major 1
chmod 644 watchdog
;;
local) local)
umask 0 umask 0
sh $0.local all sh $0.local all