Advertisement
techmik

Untitled

Sep 1st, 2011
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.57 KB | None | 0 0
  1. # mybuild.sh
  2.      
  3. # my custom script to build and flash
  4.      
  5. # change to top of build directory
  6. cd ~/android/system
  7.      
  8. # clean 1st if called
  9. OPTION="$1"
  10.  
  11. case "$OPTION" in
  12.    clean)
  13.     make clean
  14.     rm -rf ./out
  15.    
  16. # prepare and build for my stupid system ;)
  17. USE_CCACHE=1 ./build.sh captivatemtd kernel && mv ~/android/system/out/target/product/captivatemtd/cyanogen_captivatemtd-ota-eng.techmik.zip ~/android/system/out/target/product/captivatemtd/cyanogen_captivatemtd-ota-eng..zip && USE_CCACHE=1 ./build.sh captivatemtd kernel && . build/envsetup.sh && lunch 86 && eat
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement