View Poll Results: Was this helpful to you?

Voters
1159. You may not vote on this poll
Page 13 of 152 FirstFirst ... 311121314152363113 ... LastLast
Results 121 to 130 of 1518

Thread: Master Kernel Thread

  1. #121
    Join Date
    Sep 2006
    Beans
    23

    Re: Master Kernel Thread

    kernel 2.6.20 + fglrx + fglrx-patch compiled fine.
    I repacked the patched fglrx_public.c into the fglrx.tar.bz to ensure the module assistant would use the patch if it untared the fglrx-source.

    reboot worked fine, 3D worked fine, `ping google.com` worked fine
    firefox,opera,evolution and friends or better to say any other internet-software is broken !
    It says "connecting to xxx..." and will stay at this state forever. I can't even connect to my router (neither firefox nor opera nor konqueror)

    here are my updated facts
    i changed nothing in the .config,
    i don't use NDIS with 2.6.17.11 (lsmod | grep ndis >results in "")

    i tried:
    to compile ndiswrapper from source #29 went fine but won't help
    to delete everything like maciu did above #117 except my eth0 entries which didn't help

    EDIT: problem located (thx neoaddict), it's my twisted FIRESTARTER
    i can't even disable it: /etc/init.d/firestarter stop results in stopping firestarter ... [fail]
    and i can't remove it: sudo aptitude remove firestarter fails because firestarter can't be stopped
    solution: rebooted with old kernel, removed firestarter.

    Now Internet works. But using firestarter too would be nice
    Last edited by juve; February 25th, 2007 at 08:44 AM.

  2. #122
    Join Date
    Jan 2007
    Beans
    Hidden!

    Re: Master Kernel Thread

    Any idea how I can install nvidia legacy on Kernel 2.6.20, tried everything, downloaded source, tried compiling into Kernel as modules, always got FB error even with nvidia FB disabled during kernel compile, also tried out Envy, no go, the newer kernel does make my system more responsive thats why I would like to use it.

    Many Thanks.

  3. #123
    Join Date
    Jun 2006
    Location
    Athena, OR. USA
    Beans
    114
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: Master Kernel Thread

    Code:
    make-kpkg clean
    Then this:

    Code:
    make-kpkg -initrd --revision=386 kernel_image kernel_headers modules_image
    Note: You can replace "386" with anything you want. Like "k7" or "686."
    The kernel will now compile for 1-3 hours, depending on the speed of your processor. If you have an extremely slow processor, you may have to wait 3-4 hours for the kernel to compile. In the meantime, I would go out to a movie or do something else while the kernel is compiling.


    I get to the section above, as root, and get this error:
    In file included from /usr/src/modules/ivtv/driver/ivtv-osd.c:176:
    /usr/src/modules/ivtv/driver/ivtv-driver.h:45:26: error: linux/config.h: No such file or directory
    make[5]: *** [/usr/src/modules/ivtv/driver/ivtv-osd.o] Error 1
    make[4]: *** [_module_/usr/src/modules/ivtv/driver] Error 2
    make[4]: Leaving directory `/usr/src/linux-2.6.20'
    make[3]: *** [all] Error 2
    make[3]: Leaving directory `/usr/src/modules/ivtv/driver'
    make[2]: *** [binary-modules] Error 2
    make[2]: Leaving directory `/usr/src/modules/ivtv'
    make[1]: *** [kdist_build] Error 2
    make[1]: Leaving directory `/usr/src/modules/ivtv'
    Module /usr/src/modules/ivtv failed.
    Hit return to Continue


    It will just sit there untill I hit enter, then ends immediately. I see the note on the fisrt page:
    IMPORTANT: READ THIS POST OR THE KERNEL MAY NOT COMPILE! I followed those steps carefully.


    OK, I just found http://www.linuxquestions.org/questi...d.php?t=506363 saying:

    HTML Code:
    The file include/linux/config.h has been removed from 2.6.19 kernel. So remember this if you build your favorite module against the new 2.6.19 kernel and you get an error similar to this:
    
    In file included from /usr/src/modules/qc-usb-0.6.4/qc-driver.c:47:
    /usr/src/modules/qc-usb-0.6.4/quickcam.h:79:26: linux/config.h: No such file or directory
    
    
    Thats because there is no more include/linux/config.h file in 2.6.19. This is from the Changelog:
    
    Quote:
    Author: Dave Jones <someone@someplace.com>
    Date: Mon Oct 9 19:13:51 2006 -0400
    
    [HEADERS] Put linux/config.h out of its misery.
    
    Signed-off-by: Dave Jones <someone@someplace.com>
    
    
    
    Author: Paul Mundt <nameremoved@a-linux-company.org>
    Date: Tue Oct 3 13:19:02 2006 +0900
    
    sh: Kill off remaining config.h references.
    
    A few of these managed to sneak back in, get rid of them once
    and for all.
    
    What I did was to modify the code and commented out all instances of the include statement :
    #include <linux/config.h>
    This seemed to work. Another trick that worked was just do this:
    touch /usr/src/linux/include/linux/config.h
    I don't understand what is to be done here:
    "What I did was to modify the code and commented out all instances of the include statement :
    #include <linux/config.h>
    This seemed to work. Another trick that worked was just do this:
    touch /usr/src/linux/include/linux/config.h"

    Any help with what this means exactly?!?! I really want to get this kernel going, I need some of the support it offers.

    SirShaggy

  4. #124
    Join Date
    Sep 2006
    Beans
    113

    Re: Master Kernel Thread

    I have had to give up on this.

    .20 works perfectly, thank you O.P., however I cannot compile my ipw3945 at all.

    There is some incompatibility with that and ieee80211 which I cannot solve, nor can google point me in the right direction.

    Thanks any ways!

  5. #125
    Join Date
    Jun 2006
    Location
    Athena, OR. USA
    Beans
    114
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: Master Kernel Thread

    OK, I think when you get here:

    Code:

    make-kpkg -initrd --revision=386 kernel_image kernel_headers modules_image

    add:

    #include <linux/config.h>
    to the end of the line.
    Like this:

    make-kpkg -initrd --revision=386 kernel_image kernel_headers modules_image #include <linux/config.h>

    This seems to have worked for me.

    SirShaggy

  6. #126
    Join Date
    Jun 2006
    Location
    Athena, OR. USA
    Beans
    114
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: Master Kernel Thread

    Quote Originally Posted by SirShaggy View Post
    OK, I think when you get here:

    Code:

    make-kpkg -initrd --revision=386 kernel_image kernel_headers modules_image

    add:

    #include <linux/config.h>
    to the end of the line.
    Like this:

    make-kpkg -initrd --revision=386 kernel_image kernel_headers modules_image #include <linux/config.h>

    This seems to have worked for me.

    SirShaggy
    NOPE, that didn't help me either. I still got the same error.

  7. #127
    Join Date
    Feb 2007
    Beans
    4

    Re: Master Kernel Thread

    i have the same problem as icohen999 , cant compile ipw 3945 at all .. ,

  8. #128
    Join Date
    Sep 2006
    Beans
    113

    Re: Master Kernel Thread

    are you getting the ieee80211 problem?

  9. #129
    Join Date
    Feb 2007
    Beans
    4

    Re: Master Kernel Thread

    yes, i try to use the one from sourceforge.net but still no use, if i want to use wifi, i use kernel 2.6.17.10 ubuntu default, any advice would be appreciated

  10. #130
    Join Date
    Dec 2006
    Location
    New Zealand
    Beans
    305
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: Master Kernel Thread

    Is 2.6.20 suppose to come up in GRUB?

Page 13 of 152 FirstFirst ... 311121314152363113 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •