-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathak-mako-build.sh
executable file
·138 lines (116 loc) · 2.48 KB
/
ak-mako-build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#!/bin/bash
# Bash Color
green='\033[01;32m'
red='\033[01;31m'
blink_red='\033[05;31m'
restore='\033[0m'
clear
# Resources
THREAD="-j$(grep -c ^processor /proc/cpuinfo)"
KERNEL="zImage"
DEFCONFIG="ak_mako_defconfig"
# Kernel Details
BASE_AK_VER="AK"
VER=".R0.MAKO"
AK_VER="$BASE_AK_VER$VER"
# Vars
export LOCALVERSION=~`echo $AK_VER`
export CROSS_COMPILE=${HOME}/android/AK-Kernel/AK-Linaro/arm-cortex_a15-linux-gnueabihf-linaro_4.9.3-2015.02/bin/arm-cortex_a15-linux-gnueabihf-
export ARCH=arm
export SUBARCH=arm
export KBUILD_BUILD_USER=CallMeAldy
export KBUILD_BUILD_HOST=AH-Hub
# Paths
KERNEL_DIR=`pwd`
REPACK_DIR="${HOME}/android/AK-Kernel/AK-Mako-AnyKernel2"
PATCH_DIR="${HOME}/android/AK-Kernel/AK-Mako-AnyKernel2/patch"
MODULES_DIR="${HOME}/android/AK-Kernel/AK-Mako-AnyKernel2/modules"
ZIP_MOVE="${HOME}/android//AK-Kernel/AK-Releases"
ZIMAGE_DIR="${HOME}/android/AK-Kernel/AK-Mako/arch/arm/boot"
# Functions
function clean_all {
rm -rf $MODULES_DIR/*
cd $REPACK_DIR
rm -rf $KERNEL
git reset --hard > /dev/null 2>&1
git clean -f -d > /dev/null 2>&1
cd $KERNEL_DIR
echo
make clean && make mrproper
}
function make_kernel {
echo
make $DEFCONFIG
make $THREAD
cp -vr $ZIMAGE_DIR/$KERNEL $REPACK_DIR
}
function make_modules {
rm `echo $MODULES_DIR"/*"`
find $KERNEL_DIR -name '*.ko' -exec cp -v {} $MODULES_DIR \;
}
function make_zip {
cd $REPACK_DIR
zip -r9 `echo $AK_VER`.zip *
mv `echo $AK_VER`.zip $ZIP_MOVE
cd $KERNEL_DIR
}
DATE_START=$(date +"%s")
echo -e "${green}"
echo "AK Kernel Creation Script:"
echo "---------------"
echo "Kernel Version:"
echo "---------------"
echo -e "${red}"; echo -e "${blink_red}"; echo "$AK_VER"; echo -e "${restore}";
echo -e "${green}"
echo "-----------------"
echo "Making AK Kernel:"
echo "-----------------"
echo -e "${restore}"
while read -p "Do you want to clean stuffs (y/n)? " cchoice
do
case "$cchoice" in
y|Y )
clean_all
echo
echo "All Cleaned now."
break
;;
n|N )
break
;;
* )
echo
echo "Invalid try again!"
echo
;;
esac
done
echo
while read -p "Do you want to build kernel (y/n)? " dchoice
do
case "$dchoice" in
y|Y)
make_kernel
make_modules
make_zip
break
;;
n|N )
break
;;
* )
echo
echo "Invalid try again!"
echo
;;
esac
done
echo -e "${green}"
echo "-------------------"
echo "Build Completed in:"
echo "-------------------"
echo -e "${restore}"
DATE_END=$(date +"%s")
DIFF=$(($DATE_END - $DATE_START))
echo "Time: $(($DIFF / 60)) minute(s) and $(($DIFF % 60)) seconds."
echo