Quote:
Originally Posted by Beatnut
Here's the link to the terminal log.
|
Ouch. Pay attention to what the makefile is telling you. It didn't even finish building properly, so
of course it's not going to install. Apparently you changed/added/subtracted part of the core kernel (like the acx driver) and
didn't run `make mrproper` to clean up the kernel before building again. This goes
double for applying patches to the kernel.
Copy /usr/src/linux/.config to somewhere safe. Delete /usr/src/linux-whatever and untar a fresh copy, make your new symlink. Apply your patch. Light some incence, call dial-a-prayer, kill some goats, etc, and then patch and run `make mrproper` (because the patch is not terrifically wholesome). Copy the .config file back to /usr/src/linux/.config, and then run `make dep && make clean && make blahblahblah` as usual. It
should build if it's going to at all.
Note that if you switch to a 2.6.x kernel,
that driver will no longer work at all. You'll need one of the ones with the datestring attached from the FTP site at erley or whatever.
Also note that the behaviour of the driver itself changes dramatically with the 2.6.x kernel. With 2.6.x you actually have to `ifconfig wlan0 up` the interface before anything's going to work at all. (It doesn't power up the card, but the tools stay confused enough to think it's working, until you up the interface). I'm using it on my notebook with mixed success. It's
really picky about what it will talk to.