VIA CLE266 DRI support ?

2009-11-02 Thread Joel Carnat
Hello,

I've just installed DFBSD 2.4.1-RELEASE and Xorg via binary packages (as 
described in the HandBook).
So far X starts but DRI doesn't seem to be available:
(EE) [drm] drmOpen failed.
(EE) CHROME(0): [dri] DRIScreenInit failed.  Disabling DRI.
(EE) AIGLX error: dlopen of /usr/pkg/lib/dri/swrast_dri.so failed (Cannot open 
/usr/pkg/lib/dri/swrast_dri.so)
(EE) GLX: could not load software renderer


The kernel says agp0: VIA 862x (CLE266) host to PCI bridge mem 
0xe400-0xe7ff at device
 0.0 on pci0 but there's no dri/drm related information. None in sysctl either.

Does Dragonfly support DRI/DRM for VIA Graphical Chipset ?
If so, how am I supposed to enable it ?

TIA,
  Jo


Re: Xorg configuration

2009-11-02 Thread Pierre Abbat
On Sunday 01 November 2009 20:59:55 jus...@shiningsilence.com wrote:
  Any suggestions about fixing the ACPI problem? If I boot the normal way
  it gets a kernel trap.

 You hadn't mentioned this before, but I don't know if it matters for the
 Xorg problem.

I talked about it on IRC and filed a bug report. I figure, if I'm going to 
configure the kernel, I might as well fix it.

On Sunday 01 November 2009 22:41:46 Saifi Khan wrote:
 What is the mobo chipset ?

Don't know.

 Does the mouse pointer show up at all ?

No.

 Does changing the resolution help ? (CTRL+SHFT+-)

No.

 Are you able to switch to a normal console ? (eg. CTRL+ALT+F1)

Yes.

Pierre
-- 
li fi'u vu'u fi'u fi'u du li pa


Re: VIA CLE266 DRI support ?

2009-11-02 Thread Sascha Wildner

Joel Carnat schrieb:

Hello,

I've just installed DFBSD 2.4.1-RELEASE and Xorg via binary packages (as 
described in the HandBook).
So far X starts but DRI doesn't seem to be available:
(EE) [drm] drmOpen failed.
(EE) CHROME(0): [dri] DRIScreenInit failed.  Disabling DRI.
(EE) AIGLX error: dlopen of /usr/pkg/lib/dri/swrast_dri.so failed (Cannot open 
/usr/pkg/lib/dri/swrast_dri.so)
(EE) GLX: could not load software renderer


The kernel says agp0: VIA 862x (CLE266) host to PCI bridge mem 
0xe400-0xe7ff at device
 0.0 on pci0 but there's no dri/drm related information. None in sysctl either.

Does Dragonfly support DRI/DRM for VIA Graphical Chipset ?
If so, how am I supposed to enable it ?


For all I know, DragonFly doesn't support viadrm yet. Someone would have 
to port it.


Sascha

--
http://yoyodyne.ath.cx


DragonFlyBSD make

2009-11-02 Thread Saifi Khan
Hi:

Couple of newbie queries about DragonFlyBSD make:

Is DragonFlyBSD make a derivative of pmake ?

While using DragonFlyBSD make utility on a source tree 
(without -j option) with a .depend file, 
is a single shell executed for all dependency commands
or is a shell executed per command ?


thanks
Saifi.



Re: DragonFlyBSD make

2009-11-02 Thread Matthew Dillon

:Hi:
:
:Couple of newbie queries about DragonFlyBSD make:
:
:Is DragonFlyBSD make a derivative of pmake ?

Not that I know of.  From outside the BSD world our
make is bsdmake.

:While using DragonFlyBSD make utility on a source tree 
:(without -j option) with a .depend file, 
:is a single shell executed for all dependency commands
:or is a shell executed per command ?
:
:thanks
:Saifi.

I believe a shell is exec'd for each command.  The simplest
commands are simply exec'd directly.  You can put complex
bourne shell command sequences on a single line to run them
in a single shell if you want.  That sort of thing is sprinkled
around the Makefiles but generally avoided if possible.

-Matt
Matthew Dillon 
dil...@backplane.com


Re: DragonFlyBSD make

2009-11-02 Thread Saifi Khan
On Mon, 2 Nov 2009, Matthew Dillon wrote:

 
 :Hi:
 :
 :Couple of newbie queries about DragonFlyBSD make:
 :
 :Is DragonFlyBSD make a derivative of pmake ?
 
 Not that I know of.  From outside the BSD world our
 make is bsdmake.
 
 

Matt, thank you for your reply.

Please see this link
http://leaf.dragonflybsd.org/cgi/web-man?command=makesection=1

There is a section titled,

SEE ALSO
 PMake - A Tutorial.  in /usr/share/doc/psd/12.make


thanks
Saifi.