2010-11-05 16:17:25 +00:00
|
|
|
#!/bin/sh
|
|
|
|
ADB="$ANDROID_SDK_PATH/tools/adb"
|
2011-01-24 17:06:04 +00:00
|
|
|
if [ ! -e $ADB ]
|
|
|
|
then
|
|
|
|
# Starting with the gingerbread sdk, the adb location changed
|
|
|
|
ADB="$ANDROID_SDK_PATH/platform-tools/adb"
|
|
|
|
fi
|
2010-11-05 16:17:25 +00:00
|
|
|
|
2010-11-12 22:00:36 +00:00
|
|
|
$ADB install -r rockbox.apk
|
2010-12-10 18:41:09 +00:00
|
|
|
echo 'am start -a android.intent.action.MAIN -n org.rockbox/.RockboxActivity; exit' | $ADB shell
|