diff options
author | Roland McGrath <roland@gnu.org> | 1999-12-03 20:47:52 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-12-03 20:47:52 +0000 |
commit | 71864184ef2e98c8b75e546e92252e2b71662749 (patch) | |
tree | f633a160a095f8aeb01ca32b57cf99e15e8ea642 /sutils/MAKEDEV.sh | |
parent | 951443434b831afc38c7ce2198e4cd5999b53631 (diff) |
1999-12-03 Roland McGrath <roland@baalperazim.frob.com>
* MAKEDEV.sh (mkdev: full): New device, using /hurd/null --full.
(mkdev: std): Add full to the standard list.
Diffstat (limited to 'sutils/MAKEDEV.sh')
-rw-r--r-- | sutils/MAKEDEV.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sutils/MAKEDEV.sh b/sutils/MAKEDEV.sh index 49e0ffae..511deed2 100644 --- a/sutils/MAKEDEV.sh +++ b/sutils/MAKEDEV.sh @@ -86,12 +86,14 @@ function mkdev { ;; std) - mkdev console tty null zero fd time mem + mkdev console tty null zero full fd time mem ;; console|tty[0-9][0-9a-f]|tty[0-9a-f]|com[0-9]) st $I root 600 /hurd/term ${DEVDIR}/$I device $I;; null) st $I root 666 /hurd/null;; + full) + st $I root 666 /hurd/null --full;; zero) st $I root 666 /hurd/storeio -Tzero;; tty) |