# # madwifi.make-tgz.sh Make a Tar ball of the files # # # 19-Jun-04 amo Build a working package # 21-Jun-04 amo Added WPA # 23-Aug-04 amo Use HEAD tree again ( WPA tree is obsoleted 06-Aug-04 ), remove Patch # 19-Sep-04 amo Use SRC ( src/Madwifi ) and yeardate # 27-Sep-04 amo Cleanup for Madwifi.net # # # SRC="/usr/local/src/Madwifi" cd $SRC # # # This script # BuildScript="madwifi.make-tgz.sh madwifi.cvs.sh" # # # The kernel config file that worked for me # KernelConf24="madwifi-20040619.Linux-2.4.26.config* madwifi-20040927.Linux-2.4.27.config.p4" KernelConf26="madwifi-20040619.Linux-2.6.*" # # # Some generic/simple Install-HOWTO info # InstallHowto="madwifi-20040619.Install-HOWTO.txt madwifi-20040627.wpa.Install-HOWTO.txt" # # # Patch File # # Patch="madwifi-20040621.wpa.net80211.ieee80211_linux.h.patch" # # # Fixing some module problems # ModuleFix="madwifi.module.problems.txt" # # # For WPA # WPA1="wpa_supplicant.Install-HOWTO.txt" WPA2="wpa_supplicant.conf wpa_supplicant.big.conf wpa_supplicant-0.2.3/.config wpa_supplicant-0.2.3/Makefile" WPA="$WPA1 $WPA2" # # # # Todays time Stamp # ----------------- yeardate=`date '+%Y%m%d'` # # # Latest working Madwifi Driver i tested # -------------------------------------- # DIR1="madwifi-$yeardate" # # # Files to put into the Package ( remove Patch ) # FILES="$BuildScript $KernelConf24 $KernelConf26 $InstallHowto $ModuleFix" # # # Now Make the Tar balls # ----------------------- # cd $SRC/$DIR1 ; make clean cd $SRC # tar zcvf $DIR1.tgz $FILES $DIR1 # # # End of file