;; ;; linux-wlan-ng-0.2.1-pre20 ;; If you want to create a file, visit that file with C-x C-f, ;; then enter the text in that file's own buffer. ;; ;; use /lib/modules/2.6.5-1.358/build - install the kernel sources # ln -s /usr/src/linux- /usr/src/linux # cp /boot/config- /usr/src/linux/oldconfig # cd /usr/src/linux # make menuconfig - go to one of the last menu-entrys named "load an alternate configuration file" - load the previously copied oldconfig - Dont do anything else, you have the now original configuration. - go to exit and click yes by asking you for save (you don't need to do that all, a simple copy like cp /boot/config- /usr/src/linux/.config would be enough, but you should know what to do and why ) make - wait until "make" completed (drink a coffee or something, several hours) - now go to your driversourcedir and try to compile the wlandriver again $ make config Build Prism2.x PCMCIA Card Services driver ? [n Build Prism2.5 PLX9052 driver ? [n Build Prism2.5 native PCI driver ? [n Build Prism2.5 USB driver ? [y Linux source directory [/usr/src/linux-2.6.5-1.358 $ make all /usr/src/linux-2.6.5-1.358/drivers/media/video/zr36067.mod.c: Permission denied # chmod -R 777 /usr/src/linux-2.6.5-1.358/* $ make all OR # make all # make install - edit /etc/wlan/wlan.conf ChannelList="01:02:03:04:05:06:07:08:09:0a:0b:0c:0d:0e" SSID_wlan0="WARPSTAR-08F12E" # cp /etc/wlan/wlancfg-DEFAULT /etc/wlan/wlancfg-WARPSTAR-08F12E - plug in the Prism2.x USB device # /sbin/modprobe prism2_usb prism2_doreset=1 # /sbin/wlanctl-ng wlan0 lnxreq_ifstate ifstate=enable # /sbin/wlanctl-ng wlan0 lnxreq_autojoin ssid=WARPSTAR-08F12E authtype=opensystem # /sbin/ifconfig wlan0 OR # cp /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-wlan0 - edit ifcfg-eth0 ONBOOT=no - edit ifcfg-wlan0 DEVICE=wlan0 BOOTPROTO=dhcp ONBOOT=yes # /sbin/ifup /etc/sysconfig/network-scripts/ifcfg-wlan0 - edit /etc/rc.d/rc.local /sbin/modprobe prism2_usb prism2_doreset=1 /sbin/wlanctl-ng wlan0 lnxreq_ifstate ifstate=enable /sbin/wlanctl-ng wlan0 lnxreq_autojoin ssid=WARPSTAR-08F12E authtype=opensystem /sbin/ifup /etc/sysconfig/network-scripts/ifcfg-wlan0