summaryrefslogtreecommitdiff
path: root/devio
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-06-15 18:13:18 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-06-15 18:13:18 +0000
commit3304735f4bde4877f475767aed007bceabdc0d93 (patch)
treed8b3e198db175623e9f63e4b68bf3271435ce754 /devio
parent1e469e0c2e0b6d9a4115603e8ee1eee39a999f0d (diff)
([hrs]d*): Allow user to specify slice as well. Patch from Gord
Matzigkeit, gord@enci.ucalgary.ca.
Diffstat (limited to 'devio')
-rw-r--r--devio/MAKEDEV4
1 files changed, 2 insertions, 2 deletions
diff --git a/devio/MAKEDEV b/devio/MAKEDEV
index d992d06a..b113e3c1 100644
--- a/devio/MAKEDEV
+++ b/devio/MAKEDEV
@@ -62,12 +62,12 @@ for I; do
[hrs]d*)
case "$I" in
- [a-z][a-z][0-9][a-z])
+ [a-z][a-z][0-9][a-z] | [a-z][a-z][0-9]s[1-9])
$ST r$I /hurd/devio $I
$ST $I /hurd/devio -b $I
;;
*)
- echo 1>&2 $0: $I: Must supply a device number and partition
+ echo 1>&2 $0: $I: Must supply a device number and partition or slice
exit 1
;;
esac