[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: mac mini dmesg
On Tue, 1 Mar 2005, Otto Moerbeek wrote:
> Framebuffer X works OK in 8bit mode. I'm having some trouble getting the
> radeon driver to work, though. So no 24bits or accelerated X yet. I'll
> keep you all updated.
Thanks to both Mattieu Herb and Jonathan Gray I got the radeon driver
working. Before, I could start up X and about 1 in 10 times it would
actually start and show a slighly distorted picture. Quitting X would hang
the machine, either with a panic or a freeze.
The key is enabling the iBookHacks option, it makes the quit problem go
away and now the picture is clear and stable. X still does not start up
all the time, though. Sometimes I have to try a couple of times... But
when it starts it runs fine in 24 bits mode.
I also got sound working with the patch below. Did not test sound input.
Actually I do not know if the snapper driver support sound input at
all....
-Otto
Index: snapper.c
===================================================================
RCS file: /cvs/src/sys/arch/macppc/dev/snapper.c,v
retrieving revision 1.7
diff -u -p -r1.7 snapper.c
--- snapper.c 25 Dec 2004 23:02:24 -0000 1.7
+++ snapper.c 2 Mar 2005 08:58:33 -0000
@@ -324,7 +324,8 @@ snapper_match(parent, match, aux)
bzero(compat, sizeof compat);
OF_getprop(soundchip, "compatible", compat, sizeof compat);
- if (strcmp(compat, "snapper") != 0)
+ if (strcmp(compat, "snapper") != 0 &&
+ strcmp(compat, "AOAKeylargo") != 0)
return 0;
return 1;