[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2009-06-14 Thread Jacuntu53
** Branch linked: lp:~tormodvolden/jockey/fglrx-naming -- fglrx fails to compile with 2.6.27-2 kernel https://bugs.launchpad.net/bugs/266956 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.u

Re: [Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-22 Thread Mario Limonciello
This is caused by having both radeon and fglrx modules loaded at the same time. Nonetheless, it's a different bug, i'd recommend opening a different report if issues like that persist. On Mon, Sep 22, 2008 at 07:35, Jaakan Shorter <[EMAIL PROTECTED]>wrote: > I installed the driver with jockey th

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-22 Thread Jaakan Shorter
I forgot to add. fglrx version was "8.532-0ubuntu4" -- fglrx fails to compile with 2.6.27-2 kernel https://bugs.launchpad.net/bugs/266956 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubun

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-22 Thread Jaakan Shorter
I installed the driver with jockey this morning and saw this in my logs Sep 22 08:27:37 jms1000 kernel: [22405.922057] Symbol init_mm is marked as UNUSED, however this module is using it. Sep 22 08:27:37 jms1000 kernel: [22405.922076] This symbol will go away in the future. Sep 22 08:27:37 jms10

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-21 Thread mahdi
still has problems, when running dkms it says: Kernel preparation unnecessary for this kernel. Skipping... applying patch fglrx_8.9_2.6.27.patch...missing header for unified diff at line 3 of patch can't find file to patch at input line 3 Perhaps you used the wrong -p or --strip option? The text

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-21 Thread Launchpad Bug Tracker
This bug was fixed in the package fglrx-installer - 2:8.532-0ubuntu3 --- fglrx-installer (2:8.532-0ubuntu3) intrepid; urgency=low [ Alberto Milone (tseliot) ] * debian/modaliases/fglrx_supported: - Add "xorg-driver-fglrx" to the strings printed to fglrx-modules.alias.ove

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-21 Thread Stefan Hamminga
For a simple workaround I changed the license in firegl_public.c to GPL and it compiles, installs & works! Compiz et all working great with Intrepid AMD64 and the Hardy x-server. -- fglrx fails to compile with 2.6.27-2 kernel https://bugs.launchpad.net/bugs/266956 You received this bug notificati

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-21 Thread Stefan Hamminga
I'm by no means a programmer, but anyhow I tried to change some stuff to get the fglrx module to compile on x86_64, in firegl_public.c: Line 1560: - return current->euid; +return current_euid(); Line 4659 & 4678 (don't know if this is sane to do): -if (smp_call_function(KCL_setup_pat,

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-21 Thread Stefan Hamminga
How I got the Hardy xorg running on Intrepid: 1. Move /etc/apt/sources.list => intrepid.list & create a hardy list mv /etc/apt/sources.list /etc/apt/sources.list.d/intrepid.list cp /etc/apt/sources.list.d/intrepid.list /etc/apt/sources.list.d/hardy.list Then open up your favorite editor and edit /

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-21 Thread Marco Chiappero
Same thing here, the module is now compiling and loading fine but X refuses to start because of the mismatch. -- fglrx fails to compile with 2.6.27-2 kernel https://bugs.launchpad.net/bugs/266956 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ub

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-21 Thread Dupond Jean-Louis
#if defined(__x86_64__) && defined(__SMP__) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27)) on_each_cpu(KCL_flush_tlb_one, &va, 1); #elif defined(__x86_64__) && defined(__SMP__) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,25)) on_each_cpu(KCL_flush_tlb_one, &va, 1, 1); #else flush_

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-20 Thread Arceliar
Dupond Jean-Louis is pretty much correct. I modified /var/lib/dkms/fglrx/8.532/source/firegl_public.c to look like: #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27)) on_each_cpu(KCL_flush_tlb_one, &va, 1); #elif defined(__x86_64__) && defined(__SMP__) && (LINUX_VERSION_CODE >= KERNEL_VERSION

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-20 Thread Dupond Jean-Louis
#if defined(__x86_64__) && defined(__SMP__) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,25)) on_each_cpu(KCL_flush_tlb_one, &va, 1, 1); thats why it only applies to 64bit, because on_each_cpu is never called when u compile it on a 32bit system ! #if defined(__x86_64__) && defined(__SMP__)

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-20 Thread Dupond Jean-Louis
It patches the smp_call_function function argument change ... but NOT the on_each_cpu argument change .. can't be so hard to fix :( -- fglrx fails to compile with 2.6.27-2 kernel https://bugs.launchpad.net/bugs/266956 You received this bug notification because you are a member of Ubuntu Bugs, whi

Re: [Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-20 Thread Mario Limonciello
That's what the kernel patch that's included does.. It works on i386. On Sat, Sep 20, 2008 at 15:49, Dupond Jean-Louis <[EMAIL PROTECTED]> wrote: > http://kerneltrap.org/mailarchive/linux-kernel/2008/5/29/1968744 > > This is causing it ... on_each_cpu has 1 argument less in 2.6.27 ... Can't > be

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-20 Thread Dupond Jean-Louis
http://kerneltrap.org/mailarchive/linux-kernel/2008/5/29/1968744 This is causing it ... on_each_cpu has 1 argument less in 2.6.27 ... Can't be so hard to fix ... The 3rd argument is removed ... so just remove it in the code, and it will work ! -- fglrx fails to compile with 2.6.27-2 kernel ht

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-20 Thread Stefan Hamminga
I can confirm the problem Mahdi has, running Ubuntu Intrepid x86_64 (latest updates as of 2008-09-20). My language is set as (US) English, as per default, and my location is set as Netherlands (for correct timezone & kbd). ** Attachment added: "make.sh.log" http://launchpadlibrarian.net/107

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-19 Thread mahdi
I am in Canada. Yes, they are strange! -- fglrx fails to compile with 2.6.27-2 kernel https://bugs.launchpad.net/bugs/266956 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https:

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-19 Thread Mario Limonciello
particularly with seeing those characters while you were having the patch applied. ** Changed in: fglrx-installer (Ubuntu) Status: Fix Released => New -- fglrx fails to compile with 2.6.27-2 kernel https://bugs.launchpad.net/bugs/266956 You received this bug notification because you are a

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-19 Thread Mario Limonciello
What locale are you in? I'm wondering if something odd is happening here -- fglrx fails to compile with 2.6.27-2 kernel https://bugs.launchpad.net/bugs/266956 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing l

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-19 Thread mahdi
the fix released still does not solve the problem. after installing 2:8.532-0ubuntu2 and running "sudo dkms build -m fglrx -v 8.532 -k 2.6.27-3-generic" I get: Kernel preparation unnecessary for this kernel. Skipping... applying patch fglrx_8.9_2.6.27.patch...patching file firegl_public.c Bu

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-19 Thread Olivier Blanc
Installing the new versions gives the following errror : Paramétrage de fglrx-kernel-source (2:8.532-0ubuntu1) ... Adding Module to DKMS build system Doing initial module build Error! Patch fglrx_8.9_2.6.27.patch as specified in dkms.conf cannot be found in /var/lib/dkms/fglrx/8.532/build/patche

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-18 Thread Launchpad Bug Tracker
This bug was fixed in the package fglrx-installer - 2:8.532-0ubuntu1 --- fglrx-installer (2:8.532-0ubuntu1) intrepid; urgency=low * Add debian/kernel-source-patches/fglrx_8.9_2.6.27.patch to allow compiling against 2.6.27. (LP: #266956) * debian/dkms.conf.in: - Use 2.6.27

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-16 Thread Stefan Hamminga
That can be solved with pinning the xserver. Doesn't compile here either (Intrepid AMD64, 2.6.27-3-generic)... -- fglrx fails to compile with 2.6.27-2 kernel https://bugs.launchpad.net/bugs/266956 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

[Bug 266956] Re: fglrx fails to compile with 2.6.27-2 kernel

2008-09-08 Thread Mario Limonciello
** Changed in: fglrx-installer (Ubuntu) Importance: Undecided => Critical Status: New => Confirmed -- fglrx fails to compile with 2.6.27-2 kernel https://bugs.launchpad.net/bugs/266956 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubu