summaryrefslogtreecommitdiff
path: root/etc/etc.hp300
diff options
context:
space:
mode:
authortsutsui <tsutsui@NetBSD.org>2005-10-07 16:15:41 +0000
committertsutsui <tsutsui@NetBSD.org>2005-10-07 16:15:41 +0000
commit76540c92cbf543a7903b4f2de65ce8984188169a (patch)
tree33e87b08669b7e7452635572c36aecd1928f8f02 /etc/etc.hp300
parent4b5421222c17053a177094ca094cfe3940bbc839 (diff)
Remove compat symlink entries for old dca(4), dcm(4) and apci(4).
Now they might cause other problems.
Diffstat (limited to 'etc/etc.hp300')
-rw-r--r--etc/etc.hp300/MAKEDEV.conf62
1 files changed, 1 insertions, 61 deletions
diff --git a/etc/etc.hp300/MAKEDEV.conf b/etc/etc.hp300/MAKEDEV.conf
index 994a6d1eaec..73a6a30fadb 100644
--- a/etc/etc.hp300/MAKEDEV.conf
+++ b/etc/etc.hp300/MAKEDEV.conf
@@ -1,4 +1,4 @@
-# $NetBSD: MAKEDEV.conf,v 1.9 2003/12/22 22:26:32 lukem Exp $
+# $NetBSD: MAKEDEV.conf,v 1.10 2005/10/07 16:15:41 tsutsui Exp $
all_md)
makedev ct0 ct1 rd0 rd1 rd2
@@ -10,9 +10,6 @@ all_md)
makedev ttyM8 ttyM9 ttyMa ttyMb ttyMc ttyMd ttyMe ttyMf
makedev scsibus0 scsibus1 scsibus2 scsibus3
makedev ss0 uk0 uk1
-# Create symlinks for compatibility with old devices.
-# These entries should be removed after 2.0-release.
- makedev dca0 dcm0 dcm1 dcm2 dcm3 apci0
;;
ct*)
@@ -96,60 +93,3 @@ ttyM*)
fi
mkdev ttyM$unit c 15 $i "" "" $u_uucp
;;
-
-# Create symlinks for compatibility with old devices.
-# The following entries should be removed after 2.0-release.
-dca*)
- # old MAKEDEV creates only tty0 for dca
- unit=${i#dca}
- case $unit in
- 0)
- lndev ttyC0 tty0
- ;;
- *)
- warn "bad unit for dca in: $i"
- ;;
- esac
- ;;
-
-dcm*)
- unit=${i#dcm}
- case $unit in
- 0|1|2|3)
- for n in 0 1 2 3
- do
- in=$(($unit * 4 + $n))
- case $in in
- [0-9]) i=$in ;;
- 10) i=a ;;
- 11) i=b ;;
- 12) i=c ;;
- 13) i=d ;;
- 14) i=e ;;
- 15) i=f ;;
- esac
- lndev ttyM${i} tty0${i}
- done
- ;;
- *)
- warn "bad unit for dcm in: $i"
- ;;
- esac
- ;;
-
-apci*)
- # There exists only one Frodo ASIC per HP9000/400 SPU.
- unit=${i#apci}
- case $unit in
- 0)
- for i in 0 1 2
- do
- lndev ttyC$(($i + 1)) ttya${i}
- done
- ;;
- *)
- warn "bad unit for apci in: $i"
- ;;
- esac
- ;;
-# end of entries for compatibility with old devices