
There's an ebuild at bugs.gentoo.org which seems to work ok. Also with xorg-server 1.6kernelOfTruth wrote:Hi guys,
I've just stumbled over a post at archlinux' AUR and there seems to be a patch for amd/ati catalyst supporting 2.6.30:
http://aur.archlinux.org/packages.php?ID=22899
at the ubuntuforums in from China:
kudos to those / the creator of the patch:
http://forum.ubuntu.org.cn/viewtopic.php?f=42&p=1329973



see: http://debianforum.de/forum/viewtopic.php?f=2&p=707443 (you can translate via google)Link31 wrote:Since the driver appears to work correctly on 2.6.30, I'm going to try writing a small patch to remove the dmesg spam... As with everything else on my Gentoo system, when I don't like something I just patch it out, and the kernel or drivers are no exception.
Before I start digging through the drm code, do anyone have an idea on where this message could be caught ? Do you think that a simple "if (strcmp()...)" in the printk() function will do the job, or is there any other way that could be more efficient ?
Code: Select all
filter f_glrx { match("fglrx:"); };
destination ofglrx { file("/var/log/fglrx_crap.log" owner("root") group("adm") perm(0644)); };
log {
source(src);
filter(f_glrx);
destination(ofglrx);
};
it's not from me - it's the only solution I could google up so farLink31 wrote:Yes, sure, but I don't want it to clutter up dmesg. Your config file does only prevent the message from reaching the hard drive, but the kernel dmesg buffer remains cluttered.
Code: Select all
--- a/kernel/printk.c 2009-06-20 01:33:36.000000000 +0200
+++ b/kernel/printk.c 2009-06-20 01:57:16.000000000 +0200
@@ -578,6 +578,16 @@ asmlinkage int printk(const char *fmt, .
va_list args;
int r;
+ /* if (strcmp(fmt, "fmt=%s\n") != 0)
+ printk("fmt=%s\n", fmt); */
+
+ if (strcmp(fmt, "<3>[fglrx:firegl_find_any_map] *ERROR* Invalid map handle!") == 0
+ || strstr(fmt, "<3>[fglrx:drm_vm_open] *ERROR* map not found -> inconsistent kernel data!!!") == fmt
+ || strstr(fmt, "<3>[fglrx:drm_vm_close] *ERROR* map not found -> inconsistent kernel data!!!") == fmt)
+ {
+ return 0;
+ }
+
va_start(args, fmt);
r = vprintk(fmt, args);
va_end(args);

in that case, what is the diff between the precompiled drivers and the open source one? the compositing or direct rendering / opengl apps are the only reason for users not to switch to the open source driverkernelOfTruth wrote:it almost completely disappears if you're not using compositing or direct rendering / opengl apps,
I know this isn't an option for most people (including me) but just in case you mostly want to get rid of it
Re-emerge the ebuilds given by below command:amissus wrote:Driver works, but I have no mouse and keyboard after startx : \
Code: Select all
qlist -I -C x11-driversNope. In my case neither of radeon nor radeonhd will work with my card.DaggyStyle wrote:in that case, what is the diff between the precompiled drivers and the open source one? the compositing or direct rendering / opengl apps are the only reason for users not to switch to the open source driverkernelOfTruth wrote:it almost completely disappears if you're not using compositing or direct rendering / opengl apps,
I know this isn't an option for most people (including me) but just in case you mostly want to get rid of it
That's a separate issue. You have hit the upgrade from kbd/mouse to hal/evdev. I can't give you a link right now because I have to go, maybe someone else can guide you, but that's nothing to do with the graphics driver. At least it shouldn't have to do.amissus wrote:Driver works, but I have no mouse and keyboard after startx : \

I'm not using compositing or anything of that sort (no Compiz or anything like that either). I regret getting an ATi card so much, it was hit and miss in the past but now I seem stuck. Does anyone know of a downgrade route I could follow to get the system back to normal? I'd downgrade the kernel and ATi drivers but I'm not sure if the X ABI change will make that impossible.kernelOfTruth wrote:http://ati.cchtml.com/
go bug them !![]()
sorry, I've no fix for this problem right now and have stopped using compositing for this very reason (it's not locking up for me but slowing down noticably ...)
amd / ati - you guys make me sad

actually, I would stick with ati because there problem is software based which will be solved soon, I won't get nvidia because past experience which included faulty hardware that left their production line knowingly...Enverex wrote:I'm not using compositing or anything of that sort (no Compiz or anything like that either). I regret getting an ATi card so much, it was hit and miss in the past but now I seem stuck. Does anyone know of a downgrade route I could follow to get the system back to normal? I'd downgrade the kernel and ATi drivers but I'm not sure if the X ABI change will make that impossible.kernelOfTruth wrote:http://ati.cchtml.com/
go bug them !![]()
sorry, I've no fix for this problem right now and have stopped using compositing for this very reason (it's not locking up for me but slowing down noticably ...)
amd / ati - you guys make me sad