Subject: Re: altq devices?
To: Simon Raahauge DeSantis <xiamin@ghostpriest.gay-robot.com>
From: Manuel Bouyer <bouyer@antioche.lip6.fr>
List: netbsd-help
Date: 04/16/2003 10:56:34
On Tue, Apr 15, 2003 at 04:19:14PM -0400, Simon Raahauge DeSantis wrote:
> NetBSD/sparc. Is altq not supported for all archs?

It should, but the device has not been added to all port's cdevsw.
Please try the attached patch for the sparc kernel, and make the devices:
sh
cd /dev
mkdir 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 77 $unit
    chmod 644 altq/$dev
    unit=$(($unit + 1))
done
exit

--
Manuel Bouyer, LIP6, Universite Paris VI.           Manuel.Bouyer@lip6.fr
     NetBSD: 24 ans d'experience feront toujours la difference
--