diff options
author | scottl <scottl@FreeBSD.org> | 2002-10-20 08:17:39 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2002-10-20 08:17:39 +0000 |
commit | 710948de69ddeae56bda663219319f6d859aea1f (patch) | |
tree | 71c65823ba2e8591de708d5cb2e990a75135ee11 /etc | |
parent | 63bd46464d6d4587c20c1ca62fb6a6e3be132db9 (diff) | |
download | FreeBSD-src-710948de69ddeae56bda663219319f6d859aea1f.zip FreeBSD-src-710948de69ddeae56bda663219319f6d859aea1f.tar.gz |
After much delay and anticipation, welcome RAIDFrame into the FreeBSD
world. This should be considered highly experimental.
Approved-by: re
Diffstat (limited to 'etc')
-rw-r--r-- | etc/MAKEDEV | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV index dbc2803..fa9dd8c 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -446,8 +446,12 @@ wt*) umask 77 ;; +raidctl) + mknod raidctl c 201 0 root:operator + ;; + # Individual slices. -aacd*s*|ad*s*|ar*s*|afd*s*|amrd*s*|da*s*|fla*s*|idad*s*|md*s*|mlxd*s*|twed*s*|wd*s*|wfd*s*) +aacd*s*|ad*s*|ar*s*|afd*s*|amrd*s*|da*s*|fla*s*|idad*s*|md*s*|mlxd*s*|twed*s*|wd*s*|wfd*s*|raid*s*) umask $disk_umask case $i in aacd*s*) name=aacd; chr=151;; @@ -463,9 +467,10 @@ aacd*s*|ad*s*|ar*s*|afd*s*|amrd*s*|da*s*|fla*s*|idad*s*|md*s*|mlxd*s*|twed*s*|wd twed*s*) name=twed; chr=147;; wd*s*) name=wd; chr=3;; wfd*s*) name=wfd; chr=87;; + raid*s*) name=raid; chr=200;; esac case $i in - aacd*s*|amrd*s*|idad*s*|mlxd*s*|twed*s*) + aacd*s*|amrd*s*|idad*s*|mlxd*s*|twed*s*|raid*s*) unit=`expr $i : '....\([0-9]*\)s'` slice=`expr $i : '....[0-9]*s\([0-9]*\)'` part=`expr $i : '....[0-9]*s[0-9]*\(.*\)'` @@ -552,7 +557,7 @@ ata) ;; -aacd*|ad*|ar*|afd*|amrd*|da*|fla*|idad*|md*|mlxd*|twed*|wd*|wfd*) +aacd*|ad*|ar*|afd*|amrd*|da*|fla*|idad*|md*|mlxd*|twed*|wd*|wfd*|raid*) umask $disk_umask case $i in aacd*) name=aacd; chr=151;; @@ -568,9 +573,10 @@ aacd*|ad*|ar*|afd*|amrd*|da*|fla*|idad*|md*|mlxd*|twed*|wd*|wfd*) twed*) name=twed; chr=147;; wd*) name=wd; chr=3;; wfd*) name=wfd; chr=87;; + raid*) name=raid; chr=200;; esac case $i in - aacd*|amrd*|idad*|mlxd*|twed*) + aacd*|amrd*|idad*|mlxd*|twed*|raid*) unit=`expr $i : '....\(.*\)'` ;; afd*|fla*|wfd*) |