Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Jan 2001 23:05:47 -0500
From:      "Donald J . Maddox" <dmaddox@sc.rr.com>
To:        Jonathan Chen <jonathan.chen@itouch.co.nz>
Cc:        Alexander Volk <volk@nalog.khv.ru>, freebsd-questions@FreeBSD.ORG
Subject:   Re: /dev/agpgart not configured
Message-ID:  <20010104230546.A1295@cae88-102-101.sc.rr.com>
In-Reply-To: <20010105170104.A66704@itouchnz.itouch>; from jonathan.chen@itouch.co.nz on Fri, Jan 05, 2001 at 05:01:04PM %2B1300
References:  <000901c076bc$1ddc7410$03000059@volk> <20010105170104.A66704@itouchnz.itouch>

next in thread | previous in thread | raw e-mail | index | archive | help
Why would you do this, as opposed to having:

agp_load="YES"

in /boot/loader.conf?

On Fri, Jan 05, 2001 at 05:01:04PM +1300, Jonathan Chen wrote:
> On Fri, Jan 05, 2001 at 12:06:21PM +1000, Alexander Volk wrote:
> > At start Xfree86 - 4.0.2_2 on the FreeBSD 4.2 there is an error:
> >     Unable to open /dev/agpgart (Device not configured)
> > How to load agpgart in a kernel ?
> 
> Have a executable script file in /usr/local/etc/rc.d to load the agp
> kld. Here's a sample of kldload.sh:
> 
> ----------------------------------------------------------------------
>     #!/bin/sh
>     #
>     #       Load various klds
>     #
>     KOLIST="agp.ko"
> 
>     case $1 in
>     start)
>             KLDCMD="kldload"
>             ;;
>     stop)
>             KLDCMD="kldunload"
>             ;;
> 
>     *)
>             echo "usage: `basename $0` {start|stop}" >&2
>             exit 64
>             ;;
>     esac
> 
>     for i in ${KOLIST}
>     do
>             ${KLDCMD} ${i} && echo -n "${i} "
>     done
> ----------------------------------------------------------------------
> 
> Cheers.
> -- 
> Jonathan Chen <jonathan.chen@itouch.co.nz>
> ----------------------------------------------------------------------
>                                 Don't worry about avoiding temptation,
>                             as you grow older, it starts avoiding you.
> 
> 
> To Unsubscribe: send mail to majordomo@FreeBSD.org
> with "unsubscribe freebsd-questions" in the body of the message


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010104230546.A1295>