Hi I was trying to make my own live cd of PelicanHPC and I want to put into the live cd new driver for network adapter Atheros 8151. These lines i put into build script.
# Atheros 81 Network family driver cd /etc/skel mkdir AR81Family sleep 10 wget http://k003.kiwi6.com/hotlink/5h69ss0y70/ar81family_linux_v1_0_1_14_tar.gz sleep 10 mv ar81family_linux_v1_0_1_14_tar.gz AR81Family cd AR81Family sleep 10 tar zxvf ar81family_linux_v1_0_1_14_tar.gz sleep 10 make install modprobe atl1e Im following instruction how to install driver on the debian systems. I installed driver on my ubuntu without problem but in make_pelicanhome script there are some errors and it seems that is unable to use "make install" command. I have this error : --2011-12-20 22:11:45-- http://k003.kiwi6.com/hotlink/5h69ss0y70/ar81family_linux_v1_0_1_14_tar.gz Resolving k003.kiwi6.com... 76.73.3.162 Connecting to k003.kiwi6.com|76.73.3.162|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 137047 (134K) [application/x-gzip] Saving to: `ar81family_linux_v1_0_1_14_tar.gz' 0K .......... .......... .......... .......... .......... 37% 25.2K 3s 50K .......... .......... .......... .......... .......... 74% 15.8K 2s 100K .......... .......... .......... ... 100% 19.1K=6.9s 2011-12-20 22:11:55 (19.3 KB/s) - `ar81family_linux_v1_0_1_14_tar.gz' saved [137047/137047] src/ src/modules.order src/Module.symvers src/Module.markers src/Makefile src/kcompat_ethtool.c src/kcompat.h src/kcompat.c src/at_osdep.h src/at_common_main.c src/at_common.h src/atl1e_param.c src/atl1e_main.c src/atl1e_hw.h src/atl1e_hw.c src/atl1e_ethtool.c src/atl1e.h src/atl1c_param.c src/atl1c_main.c src/atl1c_hw.h src/atl1c_hw.c src/atl1c_ethtool.c src/atl1c.h src/.atl1c_main.c.swo atl1e.7 atl1e.spec at_osdep.h copying dkms.conf ldistrib.txt Makefile pci.updates readme release_note.txt make -C ./src/ install make[1]: Entering directory `/etc/skel/AR81Family/src' Makefile:61: *** Linux kernel source not found. Stop. make[1]: Leaving directory `/etc/skel/AR81Family/src' make: *** [install] Error 2 FATAL: Could not load /lib/modules/2.6.32-37-generic/modules.dep: No such file or directory Do you have any experience with it ?
