Skip to content

Instantly share code, notes, and snippets.

@jedie
Created September 25, 2012 09:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jedie/3780896 to your computer and use it in GitHub Desktop.
Save jedie/3780896 to your computer and use it in GitHub Desktop.
install gapps for Mele A2000 with Firmware 1.2
#!/system/bin/busybox sh
# To install 'gapps':
# 1. download http://cmw.22aaf3.com/gapps/gapps-ics-20120317-signed.zip
# 2. extract it to /mnt/sdcard/Download/gapps/
# 3. download this script to /mnt/sdcard/Download/
# 4. start is with:
# $ su gapps.sh
# 5. reboot e.g.:
# $ reboot
(
set -x
cd "/mnt/sdcard/Download/"
busybox mount -o remount,rw /system
busybox cp -rf "gapps/system/framework" "/system/"
busybox cp -rf "gapps/system/lib" "/system/"
busybox cp -rf "gapps/system/etc/permissions" "/system/etc/"
busybox cp -rf "gapps/system/app" "/system/"
busybox mount -o remount,ro /system
)
echo "Please reboot!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment