summaryrefslogtreecommitdiff
path: root/etc/etc.mvmeppc/MAKEDEV
diff options
context:
space:
mode:
authorKenjiro Cho <kjc@cvs.openbsd.org>2002-12-05 03:00:28 +0000
committerKenjiro Cho <kjc@cvs.openbsd.org>2002-12-05 03:00:28 +0000
commit03f47233ee3a2d6896920fe8bbd72f2abe074512 (patch)
tree00dfe1703cc0ab9435280c56c1bb406faf7f7402 /etc/etc.mvmeppc/MAKEDEV
parentd990254ee7d59f887b83e2cd27d4acebf02d4c50 (diff)
remove altq entries. altq is now handled through pf.
ok, deraadt@
Diffstat (limited to 'etc/etc.mvmeppc/MAKEDEV')
-rw-r--r--etc/etc.mvmeppc/MAKEDEV18
1 files changed, 2 insertions, 16 deletions
diff --git a/etc/etc.mvmeppc/MAKEDEV b/etc/etc.mvmeppc/MAKEDEV
index 43c62abbbc8..ab3019d0a88 100644
--- a/etc/etc.mvmeppc/MAKEDEV
+++ b/etc/etc.mvmeppc/MAKEDEV
@@ -1,5 +1,5 @@
#!/bin/sh -
-# $OpenBSD: MAKEDEV,v 1.8 2002/06/09 05:58:39 todd Exp $
+# $OpenBSD: MAKEDEV,v 1.9 2002/12/05 03:00:27 kjc Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
# All rights reserved.
@@ -76,7 +76,6 @@
# tun* network tunnel driver
# lkm loadable kernel modules interface
# *random inkernal random data source
-# altq ALTQ control interface
#
PATH=/sbin:/bin:/usr/bin:/usr/sbin
@@ -162,7 +161,7 @@ all)
sh $this random uk0 uk1 ss0 ss1
sh $this wscons
sh $this pci
- sh $this lkm xfs0 altq
+ sh $this lkm xfs0
sh $this usbs
;;
@@ -633,19 +632,6 @@ xfs*)
chown root.wheel xfs$unit
;;
-altq)
- mkdir -p altq
- chmod 755 altq
- unit=0
- for dev in altq cbq wfq afm fifoq red rio localq hfsc \
- cdnr blue priq; do
- rm -f altq/$dev
- mknod altq/$dev c 71 $unit
- chmod 644 altq/$dev
- unit=$(($unit + 1))
- done
- ;;
-
*)
echo $i: unknown device
esac