Changeset 12607
- Timestamp:
- 07/03/12 16:19:38 (13 years ago)
- Location:
- issm/trunk-jpl/externalpackages
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/android/android-sdk/install.sh
r12579 r12607 14 14 sd_card="issm-sdcard" 15 15 16 ((tmp=$1 - 3))16 ((tmp=$1 )) 17 17 18 if [[ $tmp -ge " -2" && $tmp -le "3" ]]; then18 if [[ $tmp -ge "1" && $tmp -le "4" ]]; then 19 19 step=$1 20 20 else … … 25 25 26 26 #Cleanup the install 27 rm -rf install-sdk install-ant27 rm -rf install-sdk 28 28 29 29 #Download from ISSM server … … 81 81 82 82 cd ../platform-tools 83 ./adb wait-for-device shell mount -o rw,remount -t yaffs2 /dev/block/mtdblock1 /system 83 ./adb wait-for-device shell 84 #./adb wait-for-device shell mount -o rw,remount -t yaffs2 /dev/block/mtdblock1 /system 84 85 #./adb wait-for-device shell 85 ./adb push $ISSM_TIER/src/c/issm.exe /data/issm.exe86 ./adb shell chmod 777 /data/issm.exe87 ./adb shell /data/issm.exe86 #./adb push $ISSM_TIER/src/c/issm.exe /data/issm.exe 87 #./adb shell chmod 777 /data/issm.exe 88 #./adb shell /data/issm.exe 88 89 fi 89 90 90 91 if [[ $step == "4" ]]; then 91 rm -rf install-sdk install-ant92 rm -rf install-sdk 92 93 fi -
issm/trunk-jpl/externalpackages/android/android_variables.sh
r12599 r12607 2 2 ndk_rev=8 3 3 api_levels="android-14,android-15,android-16" 4 host_triplet=" "4 host_triplet="arm-linux-androideabi" 5 5 default_droid="android-4.1" 6 toolchain_path=${ANDROID_DIR}"/arm-linux-"${default_droid}"/bin/arm-linux-androideabi" -
issm/trunk-jpl/externalpackages/gsl/install-android.sh
r12579 r12607 20 20 21 21 ./configure \ 22 CC=${toolchain_path}-gcc\ 23 LD=${toolchain_path}-ld\ 24 AR=${toolchain_path}-ar\ 25 RANLIB=${toolchain_path}-ranlib\ 26 NM=${toolchain_path}-nm\ 27 OBJ_EXT=o\ 28 LIB_EXT=a\ 29 --host="arm-linux"\ 22 --build="i386-apple-darwin10.8.0" \ 23 --host=$host_triplet\ 30 24 --prefix="$ISSM_DIR/externalpackages/gsl/install" 31 25
Note:
See TracChangeset
for help on using the changeset viewer.