Add "elfzip" target to make which creates a zip of all elf files, as mapzip does...
[maemo-rb.git] / android / installApk.sh
blob5fd6afa810058de24c4684a21b92421d52147051
1 #!/bin/sh
2 ADB="$ANDROID_SDK_PATH/tools/adb"
3 if [ ! -e $ADB ]
4 then
5 # Starting with the gingerbread sdk, the adb location changed
6 ADB="$ANDROID_SDK_PATH/platform-tools/adb"
7 fi
9 $ADB install -r rockbox.apk
10 echo 'am start -a android.intent.action.MAIN -n org.rockbox/.RockboxActivity; exit' | $ADB shell