View gist:72668a845536044f4e419c39518c5964
======= Debug Command Listing ======= | |
AT just answer OK | |
ATHE print help | |
ATBAx change baudrate. 1:38.4k, 2:19.2k, 3:9.6k 4:57.6k 5:115.2k | |
ATENx,(y) set BootExtension Debug Flag (y=password) | |
ATSE show the seed of password generator | |
ATTI(h,m,s) change system time to hour:min:sec or show current time | |
ATDA(y,m,d) change system date to year/month/day or show current date | |
ATDS dump RAS stack | |
ATDT dump Boot Module Common Area |
View cloudflare-update-record.sh
#!/bin/bash | |
# CHANGE THESE | |
auth_email="user@example.com" | |
auth_key="c2547eb745079dac9320b638f5e225cf483cc5cfdda41" # found in cloudflare account settings | |
zone_name="example.com" | |
record_name="www.example.com" | |
# MAYBE CHANGE THESE | |
ip=$(curl --interface eth0 -s http://ipv4.icanhazip.com) |
View mkvendor.sh
#!/bin/sh | |
SYSTEMDIR=/system | |
VENDOR=samsung | |
DEVICE=js01lte | |
OUTDIR=vendor/$VENDOR/$DEVICE | |
mkdir -p $OUTDIR/proprietary |
View gist:257465b16b9809799f25325bfeb17ac5
mkdir source | |
mkdir bin | |
# clone source | |
cd source | |
git clone --branch android-4.3_r3 https://android.googlesource.com/platform/external/libselinux | |
git clone --branch android-4.3_r3 https://android.googlesource.com/platform/system/core | |
git clone --branch android-4.3_r3 https://android.googlesource.com/platform/external/zlib | |
git clone --branch android-4.3_r3 https://android.googlesource.com/platform/system/extras |
View Build_WebView_instruction.txt
#!/bin/bash | |
# Install depot_tools | |
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git /opt/depot_tools --depth=1 | |
export PATH=/opt/depot_tools:"$PATH" | |
# Cloning Chromium source | |
mkdir chromium | |
cd chromium | |
fetch --nohooks android |
NewerOlder