diff options
Diffstat (limited to 'sutils')
-rw-r--r-- | sutils/ChangeLog | 5 | ||||
-rw-r--r-- | sutils/MAKEDEV.sh | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/sutils/ChangeLog b/sutils/ChangeLog index 342da6ef..79c35f32 100644 --- a/sutils/ChangeLog +++ b/sutils/ChangeLog @@ -1,3 +1,8 @@ +2001-01-14 Marcus Brinkmann <marcus@gnu.org> + + * MAKEDEV.sh (mkdev: klog): New device, using /hurd/streamio kmsg. + (mkdev: std): Add klog to the standard list. + 2000-03-17 Thomas Bushnell, BSG <tb@mit.edu> * clookup.c (file_name_lookup_carefully): Don't use MOVE_SEND in diff --git a/sutils/MAKEDEV.sh b/sutils/MAKEDEV.sh index 511deed2..ab65a92d 100644 --- a/sutils/MAKEDEV.sh +++ b/sutils/MAKEDEV.sh @@ -86,7 +86,7 @@ function mkdev { ;; std) - mkdev console tty null zero full fd time mem + mkdev console tty null zero full fd time mem klog ;; console|tty[0-9][0-9a-f]|tty[0-9a-f]|com[0-9]) st $I root 600 /hurd/term ${DEVDIR}/$I device $I;; @@ -108,7 +108,8 @@ function mkdev { st $I root 644 /hurd/storeio --no-cache time ;; mem) st $I root 660 /hurd/storeio --no-cache mem ;; - + klog) + st $I root 660 /hurd/streamio kmsg;; # ptys [pt]ty[pqrstuvwxyzPQRST]?) # Make one pty, both the master and slave halves. |