Skip to content

Instantly share code, notes, and snippets.

View playfulgod's full-sized avatar

Dewayne Jones playfulgod

View GitHub Profile
#!/bin/bash
platform=`uname`
if [ $(uname -p) = 'powerpc' ]; then
echo "[-] PowerPC is not supported."
exit 1
fi
if [ "$platform" = 'Darwin' ]; then
adb="./adb.osx"
#!/bin/bash
platform=`uname`
if [ $(uname -p) = 'powerpc' ]; then
echo "[-] PowerPC is not supported."
exit 1
fi
if [ "$platform" = 'Darwin' ]; then
adb="./adb.osx"
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<remote name="gh"
fetch="git://github.com/" />
<!-- LGE MS910 -->
<project path="device/lge/ms910" name="playfulgod/android_device_lge_ms910" remote="gh" revision="jellybean" />
<project path="kernel/lge/ms910" name="playfulgod/android_kernel_lge_ms910" remote="gh" revision="jellybean" />
<?xml version="1.0" encoding="utf-8"?>
<mms_config version="4">
<bool name="enabledMMS">true</bool>
<int name="maxMessageSize">307200</int>
<int name="mmsHeaderSize">5120</int>
<int name="maxImageHeight">480</int>
<int name="maxImageWidth">640</int>
<int name="defaultSMSMessagesPerThread">200</int>
<int name="defaultMMSMessagesPerThread">20</int>
<int name="minMessageCountPerThread">10</int>
@echo off
cd "%~dp0"
echo "[*] Unlocked Bootloader, root, and CWM"
echo "[*] for the LG Spectrum 4G Windows version"
echo "[*] One click and CWM by PlayfulGod"
echo "[*] Exploit found by jcase"
echo "[*] Unlock method discovered by Neph,"
echo "[*] jcase, and death2all110"
echo "[*]"
@playfulgod
playfulgod / build.prop
Created October 13, 2012 20:45
Netflix compatible build.prop for the SCH-I500
# begin build properties
# autogenerated by buildinfo.sh
ro.build.id=GRJ22
ro.build.display.id=GRJ22
ro.build.version.incremental=121341
ro.build.version.sdk=10
ro.build.version.codename=REL
ro.build.version.release=2.3.4
ro.build.date=Fri Apr 22 14:30:35 PDT 2011
ro.build.date.utc=1303507835ro.build.type=user
@playfulgod
playfulgod / build
Created September 22, 2012 05:32
kernel build script
#!/bin/bash
# Our settings
#Let's make sure the environment is clean and ready to compile the kernel
echo
echo "Cleaning house!!"
echo
make mrproper
rm -rf ../package/system/lib/modules/*.ko
@playfulgod
playfulgod / maguro local_manifest.xml
Created September 14, 2012 08:38
local_manifest.xml for maguro
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<project name="CyanogenMod/android_device_samsung_maguro" path="device/samsung/maguro" remote="github" revision="jellybean" />
<project name="CyanogenMod/android_kernel_samsung_tuna" path="kernel/samsung/tuna" remote="github" revision="jb" />
<project name="CyanogenMod/android_device_samsung_tuna" path="device/samsung/tuna" remote="github" revision="jellybean" />
</manifest>
@playfulgod
playfulgod / local_manifest.xml
Created July 5, 2012 02:40
local_mnifest.xml for LG Esteem 4g LG-MS910
?xml version="1.0" encoding="UTF-8"?>
<manifest>
<project path="device/lge/ms910" name="playfulgod/android_device_lge_ms910" />
</manifest>
#!/bin/bash
# Unix OS Sniffer and $adb setup by Firon
platform=`uname`
if [ $(uname -p) = 'powerpc' ]; then
echo "[-] PowerPC is not supported."
exit 1
fi
if [ "$platform" = 'Darwin' ]; then
adb="Files/./adb.osx"