Changeset 1418

Show
Ignore:
Timestamp:
09/02/09 12:40:31 (3 years ago)
Author:
gbastien
Message:

* Documented #537 :

  • Updated README.openwrt for instructions on how to compile for kamikaze 8.09 and up
  • Added contrib/build-openwrt-kamikazeipk8.09up for building for kamikaze 8.09 and up
Location:
trunk/wifidog
Files:
1 added
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog/README.openwrt

    r1340 r1418  
    3535        make whiterussianipk OPENWRTSDK=~/OpenWrt-SDK-Linux-i686-1/ 
    3636 
    37 For OpenWRT Kamikaze: 
     37For OpenWRT Kamikaze up till 7.09: 
    3838        cd ~  
    3939        wget http://downloads.openwrt.org/kamikaze/7.09/brcm-2.4/OpenWrt-SDK-brcm-2.4-for-Linux-x86_64.tar.bz2 
     
    4141        cd wifidog 
    4242        make kamikazeipk OPENWRTSDK=~/OpenWrt-SDK-brcm-2.4-for-Linux-x86_64 
     43         
     44For OpenWRT Kamikaze 8.09 and up, there is no SDK available and the 7.09 SDK does not work.  So Option 1 is not an option.  Option 2 is not an option either since building the SDK did not seem to work (https://forum.openwrt.org/viewtopic.php?id=17879).  So jump to Option 3! 
    4345 
    4446   If it works (!) you will have an ipkg file in $(OPENWRTSDK)/bin/packages/ 
     
    7072 
    7173Option 3. Use the full buildroot directly (time consuming...) 
    72 cd wifidog 
    73 make dist 
    74 cd ~ 
    75 wget http://downloads.openwrt.org/kamikaze/7.09/kamikaze_7.09.tar.bz2 
    76 tar -jxvf kamikaze_7.09.tar.bz2 
    77 cp -R wifidog/contrib/build-openwrt-kamikazeipk/wifidog kamikaze_7.09/package/ 
    78 cp wifidog/wifidog-1.1.5.tar.gz kamikaze_7.09/dl/ 
    79 cd kamikaze_7.09 
    80 make menuconfig #(Follow instructions on OpenWRT's site to setup your buildroot for your platform) 
    81 make #(could take hours downloading and compiling all dependencies) 
     74   cd wifidog 
     75   make dist 
     76   cd ~ 
     77   wget http://downloads.openwrt.org/kamikaze/7.09/kamikaze_7.09.tar.bz2 
     78   tar -jxvf kamikaze_7.09.tar.bz2 
     79   cp -R wifidog/contrib/build-openwrt-kamikazeipk/wifidog kamikaze_7.09/package/ 
     80   cp wifidog/wifidog-1.1.5.tar.gz kamikaze_7.09/dl/ 
     81   cd kamikaze_7.09 
     82   make menuconfig #(Follow instructions on OpenWRT's site to setup your buildroot for your platform) 
     83   make #(could take hours downloading and compiling all dependencies) 
    8284 
     85For Kamikaze 8.09 and up, there is an extra dependency to add to the package, so here would be the new procedure 
     86   cd wifidog 
     87   make dist 
     88   cd ~ 
     89   wget http://downloads.openwrt.org/kamikaze/8.09/kamikaze_8.09.tar.bz2 
     90   tar -jxvf kamikaze_8.09.tar.bz2 
     91   cp -R wifidog/contrib/build-openwrt-kamikazeipk8.09up/wifidog kamikaze_8.09/package/ 
     92   cp wifidog/wifidog-1.1.5.tar.gz kamikaze_8.09/dl/ 
     93   cd kamikaze_8.09 
     94   make menuconfig #(Follow instructions on OpenWRT's site to setup your buildroot for your platform) 
     95   make #(could take hours downloading and compiling all dependencies) 
    8396