1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Add the 'mly' device nodes.

This commit is contained in:
Mike Smith 2001-02-25 22:52:55 +00:00
parent 8674fa777f
commit 671468e752
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=73052

View File

@ -48,6 +48,7 @@
# md* Memory (or malloc) disk
# mlx* Mylex DAC960 RAID controllers
# mlxd* Mylex DAC960 RAID disk volumes
# mly* Mylex RAID controllers (newer models)
# scd* Sony CD-ROM disks
# vn* vnode disks
# wd* "Winchester" disk drives (ST506,IDE,ESDI,RLL,...)
@ -1662,6 +1663,11 @@ mlx*)
mknod mlx$unit c 130 `unit2minor $unit`
;;
mly*)
unit=`expr $i : 'mlx\(.*\)'`
mknod mlx$unit c 158 `unit2minor $unit`
;;
amr*)
unit=`expr $i : 'amr\(.*\)'`
mknod amr$unit c 132 `unit2minor $unit`