Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.


#!/bin/bash
echo "Setting build flags..."
export OEM_PRODUCT_MANUFACTURER=PANTECH
SKY_ANDROID_FLAGS="-DFEATURE_AARM_RELEASE_MODE"
SKY_ANDROID_FLAGS+=" ""-DMODEL_ID=0x1000"
SKY_ANDROID_FLAGS+=" ""-DBOARD_VER=0x100041"
SKY_ANDROID_FLAGS+=" ""-include include/CUST_PANTECH.h"
SKY_ANDROID_FLAGS+=" ""-DFIRM_VER=\\\"CU899501.BB\\\""
SKY_ANDROID_FLAGS+=" ""-DSYS_MODEL_NAME=\\\"APACHE\\\""
SKY_ANDROID_FLAGS+=" ""-DSKY_MODEL_NAME=\\\"ADR8995\\\""
export SKY_ANDROID_FLAGS
#SKY_ANDROID_FLAGS := -DFEATURE_AARM_RELEASE_MODE \
# -DMODEL_ID=0x1000 \
# -DBOARD_VER=0x100041 \
# -include include/CUST_PANTECH.h \
# -DFIRM_VER=\"S8995VWB813F.BB\" \
# -DSYS_MODEL_NAME=\"APACHE\" \
# -DSKY_MODEL_NAME=\"ADR8995\"
export ARCH=arm;
export CROSS_COMPILE=~/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-eabi-;
threads=1;
echo -n "Input number of threads [1]: ";
read threads;
for configs in ./arch/arm/configs/msm7630*
do
echo $configs
done
echo -n "Input config name: "
read config;
echo "Setting up .config...";
make $config;
echo "Starting make process...";
make -j$threads;
echo "Creating boot image...";
./mkbootimg --kernel ./arch/arm/boot/zImage --ramdisk ./ramdisk.img --cmdline "console=ttyMSM2 androidboot.hardware=qcom" --base 0x00200000 --pagesize 4096 --output ./boot.img
echo "Done!!! Created boot image from $config";
