Skip to content

Instantly share code, notes, and snippets.

@dhylands
Last active December 19, 2015 23:18
Show Gist options
  • Save dhylands/6033737 to your computer and use it in GitHub Desktop.
Save dhylands/6033737 to your computer and use it in GitHub Desktop.
Install BusyBox
#!/bin/sh
if [ ! -f busybox-armv6l ]
then
wget "http://busybox.net/downloads/binaries/1.19.0/busybox-armv6l"
fi
adb remount
adb push busybox-armv6l /system/bin/busybox
adb shell 'cd /system/bin; chmod 555 busybox; for x in `./busybox --list`; do ln -s ./busybox $x; done'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment