-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sh
224 lines (199 loc) · 6.73 KB
/
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
#!/usr/bin/env bash
# Function to show an informational message
msg() {
echo -e "\e[1;32m$*\e[0m"
}
err() {
echo -e "\e[1;31m$*\e[0m"
}
# Environment checker
if [ -z "$TELEGRAM_TOKEN" ] || [ -z "$TELEGRAM_CHAT" ] || [ -z "$BRANCH" ]; then
err "* Missing environment!"
exit
fi
# Home directory
HOME_DIR="$(pwd)"
# Clean toolchain source
if [ "$1" = "clean" ]; then
msg "* Clean toolchain source"
msg ""
rm -rf "$HOME_DIR"/clang
fi
# Kernel source
msg "* Clone kernel source"
rm -rf kernel
git clone --depth=1 -b "$BRANCH" https://github.com/XSans0/kernel_xiaomi_vayu kernel
cd kernel || exit
# Anykernel3
msg "* Clone AnyKernel3 source"
git clone --depth=1 -b vayu https://github.com/XSans0/AnyKernel3 AK3
# Toolchain
if [ -d "$HOME_DIR/clang" ]; then
msg "* Toolchain already exist!"
msg ""
else
msg "* Clone Toolchain source"
wget https://android.googlesource.com/platform/prebuilts/clang/host/linux-x86/+archive/refs/heads/main/clang-r498229b.tar.gz -O "aosp-clang.tar.gz"
mkdir "$HOME_DIR"/clang && tar -xf aosp-clang.tar.gz -C "$HOME_DIR"/clang && rm -rf aosp-clang.tar.gz
git clone --depth=1 https://github.com/XSans0/aarch64-linux-android-4.9 "$HOME_DIR"/arm64
git clone --depth=1 https://github.com/XSans0/arm-linux-androideabi-4.9 "$HOME_DIR"/arm32
fi
# Setup
KERNEL_DIR="$PWD"
KERNEL_IMG="$KERNEL_DIR/out/arch/arm64/boot/Image"
KERNEL_DTBO="$KERNEL_DIR/out/arch/arm64/boot/dtbo.img"
KERNEL_DTB="$KERNEL_DIR/out/arch/arm64/boot/dts/qcom/sm8150-v2.dtb"
KERNEL_LOG="$KERNEL_DIR/out/log-$(TZ=Asia/Jakarta date +'%H%M').txt"
AK3_DIR="$KERNEL_DIR/AK3"
CLANG_DIR="$HOME_DIR/clang"
GCC64_DIR="$HOME_DIR/arm64"
GCC32_DIR="$HOME_DIR/arm32"
KBUILD_COMPILER_STRING="$("${CLANG_DIR}"/bin/clang --version | head -n 1 | sed -e 's/ */ /g' -e 's/[[:space:]]*$//')"
ARM64="aarch64-linux-android-"
ARM32="arm-linux-androideabi-"
TRIPLE="aarch64-linux-gnu-"
DEVICE="vayu"
CORES="$(nproc --all)"
CPU="$(lscpu | sed -nr '/Model name/ s/.*:\s*(.*) */\1/p')"
BRANCH="$(git rev-parse --abbrev-ref HEAD)"
COMMIT="$(git log --pretty=format:'%s' -1)"
COMMIT_HASH="$(git rev-parse HEAD)"
SHORT_COMMIT_HASH="$(cut -c-8 <<<"$COMMIT_HASH")"
COMMIT_URL="https://github.com/XSans0/kernel_xiaomi_vayu/commit/$SHORT_COMMIT_HASH"
# Export
export ARCH="arm64"
export SUBARCH="arm64"
export TZ="Asia/Jakarta"
export KBUILD_BUILD_USER="XSans"
export PATH="$CLANG_DIR/bin:$GCC64_DIR/bin:$GCC32_DIR/bin:$PATH"
export KBUILD_COMPILER_STRING
# Setup KBUILD_BUILD_HOST from default environment
if [ "$CIRRUS_CI" ]; then
msg "* Set [ Cirrus ] as KBUILD_BUILD_HOST"
export KBUILD_BUILD_HOST="Cirrus"
elif [ "$USER" = "gitpod" ]; then
msg "* Set [ Gitpod ] as KBUILD_BUILD_HOST"
export KBUILD_BUILD_HOST="Gitpod"
elif [ "$GITHUB_ACTIONS" ]; then
msg "* Set [ Github Actions ] as KBUILD_BUILD_HOST"
export KBUILD_BUILD_HOST="Github-Actions"
elif [ "$HARNESS_ACCOUNT_ID" ]; then
msg "* Set [ Harness ] as KBUILD_BUILD_HOST"
export KBUILD_BUILD_HOST="Harness"
fi
# Telegram Setup
git clone --depth=1 https://github.com/XSans0/Telegram Telegram
TELEGRAM="$KERNEL_DIR/Telegram/telegram"
send_msg() {
"${TELEGRAM}" -H -D \
"$(
for POST in "${@}"; do
echo "${POST}"
done
)"
}
send_file() {
"${TELEGRAM}" -H \
-f "$1" \
"$2"
}
start_msg() {
send_msg "<b>New Kernel On The Way</b>" \
"<b>==================================</b>" \
"<b>Device : </b>" \
"<code>* $DEVICE</code>" \
"<b>Branch : </b>" \
"<code>* $BRANCH</code>" \
"<b>Build Using : </b>" \
"<code>* $CPU $CORES thread</code>" \
"<b>Last Commit : </b>" \
"<b>*</b> <a href='$COMMIT_URL'>$COMMIT</a>" \
"<b>==================================</b>"
}
# MIUI support
if [ "$MIUI" == "y" ]; then
msg "* Apply MIUI patch"
git apply "$HOME_DIR"/patch/fix_physical_dimensions_miui.patch
msg "* Setup MIUI zipname"
KERNEL_VER="-MIUI"
fi
# Setup and apply patch KernelSU in root dir
if ! [ -d "$KERNEL_DIR"/KernelSU ]; then
curl -LSs "https://raw.githubusercontent.com/tiann/KernelSU/main/kernel/setup.sh" | bash -s main
git apply KernelSU-hook.patch
fi
# Start compile
START=$(date +"%s")
msg "* Start Compile kernel for $DEVICE using $CPU $CORES thread"
start_msg
make O=out "$DEVICE"_defconfig
make -j"$CORES" O=out \
LLVM=1 \
LLVM_IAS=1 \
CLANG_TRIPLE="$TRIPLE" \
CROSS_COMPILE="$ARM64" \
CROSS_COMPILE_COMPAT="$ARM32" 2>&1 | tee "$KERNEL_LOG"
# End compile
if [[ -f "$KERNEL_IMG" ]]; then
END=$(date +"%s")
TOTAL_TIME=$(("END" - "START"))
export START END TOTAL_TIME
msg "* Compile Kernel for $DEVICE successfully."
msg "* Total time elapsed: $(("TOTAL_TIME" / 60)) Minutes, $(("TOTAL_TIME" % 60)) Second."
msg ""
else
err "* Compile Kernel for $DEVICE failed, See buildlog to fix errors"
send_file "$KERNEL_LOG" "<b>Compile Kernel for $DEVICE failed, See buildlog to fix errors</b>"
exit
fi
# Copy Image/dtbo/dtb to AnyKernel3
for files in {"$KERNEL_IMG","$KERNEL_DTBO","$KERNEL_DTB"}; do
if [ -f "$files" ]; then
msg "* Copy [$files] to AnyKernel3 directory"
if [ "$files" = "$KERNEL_DTB" ]; then
cp -r "$files" "$AK3_DIR"/dtb.img
else
cp -r "$files" "$AK3_DIR"
fi
else
err "* Image/dtb/dtbo is missing!"
err ""
exit
fi
done
# Compress to ZIP
msg ""
msg "* Create ZIP"
cd "$AK3_DIR" || exit
ZIP_DATE="$(TZ=Asia/Jakarta date +'%Y%m%d')"
ZIP_DATE2="$(TZ=Asia/Jakarta date +'%H%M')"
ZIP_NAME="WeebX-Personal-$ZIP_DATE-$ZIP_DATE2$KERNEL_VER.zip"
zip -r9 "$ZIP_NAME" ./*
# Upload to PixelDrain
if [ -z "$PD_API_KEY" ]; then
response="$(curl -sT "$AK3_DIR/$ZIP_NAME" https://pixeldrain.com/api/file/)"
id="$(echo "$response" | jq -r .id)"
msg "File uploaded to : https://pixeldrain.com/api/file/$id"
else
response="$(curl -sT "$AK3_DIR/$ZIP_NAME" -u :"$PD_API_KEY" https://pixeldrain.com/api/file/)"
id="$(echo "$response" | jq -r .id)"
msg "File uploaded to : https://pixeldrain.com/api/file/$id"
fi
# Upload to telegram
send_file "$KERNEL_LOG" "<b>Compile Kernel for $DEVICE successfully.</b>"
send_file "$AK3_DIR/$ZIP_NAME" "
<b>Build Successfully</b>
<b>============================</b>
<b>Build Date : </b>
<code>* $(date +"%A, %d %b %Y")</code>
<b>Build Took : </b>
<code>* $(("TOTAL_TIME" / 60)) Minutes, $(("TOTAL_TIME" % 60)) Second.</code>
<b>Linux Version : </b>
<code>* v$(grep Linux "$KERNEL_DIR"/out/.config | cut -f 3 -d " ")</code>
<b>Md5 : </b>
<code>* $(md5sum "$AK3_DIR/$ZIP_NAME" | cut -d' ' -f1)</code>
<b>Compiler : </b>
<code>* $KBUILD_COMPILER_STRING</code>
<b>Mirror Link : </b>
<code>* </code><a href='https://pixeldrain.com/api/file/$id'>$ZIP_NAME</a>
<b>============================</b>"