-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathX00TD.sh
515 lines (404 loc) · 13.4 KB
/
X00TD.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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
#! /bin/bash
# shellcheck disable=SC2154
# Script For Building Android arm64 Kernel
#
# Copyright (c) 2018-2021 Panchajanya1999 <rsk52959@gmail.com>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#Kernel building script
# Function to show an informational message
msg() {
echo
echo -e "\e[1;32m$*\e[0m"
echo
}
err() {
echo -e "\e[1;41m$*\e[0m"
}
cdir() {
cd "$1" 2>/dev/null || \
err "The directory $1 doesn't exists !"
}
##------------------------------------------------------##
##----------Basic Informations, COMPULSORY--------------##
# The defult directory where the kernel should be placed
KERNEL_DIR=$HOME/Kernel
cd $KERNEL_DIR
# The name of the device for which the kernel is built
MODEL="Asus Zenfone Max Pro M1"
# The codename of the device
DEVICE="X00TD"
# The defconfig which should be used. Get it from config.gz from
# your device or check source
DEFCONFIG=asus/X00TD_defconfig
# Show manufacturer info
MANUFACTURERINFO="ASUSTek Computer Inc."
# Kernel Variant
VARIANT=P-WIFI
# Build Type
BUILD_TYPE="TEST: Might be unstable so use at your own risk"
# Specify compiler.
# 'clang' or 'clangxgcc' or 'gcc'
COMPILER=gcc
# Kernel is LTO
LTO=1
# Specify linker.
# 'ld.lld'(default)
LINKER=ld.lld
# Clean source prior building. 1 is NO(default) | 0 is YES
INCREMENTAL=1
# Push ZIP to Telegram. 1 is YES | 0 is NO(default)
PTTG=1
if [ $PTTG = 1 ]
then
# Set Telegram Chat ID
CHATID="-1001158889781"
fi
# Generate a full DEFCONFIG prior building. 1 is YES | 0 is NO(default)
DEF_REG=0
# Files/artifacts
FILES=Image.gz-dtb
# Build dtbo.img (select this only if your source has support to building dtbo.img)
# 1 is YES | 0 is NO(default)
BUILD_DTBO=0
# Sign the zipfile
# 1 is YES | 0 is NO
SIGN=0
if [ $SIGN = 1 ]
then
#Check for java
if command -v java > /dev/null 2>&1; then
SIGN=1
else
SIGN=0
fi
fi
# Silence the compilation
# 1 is YES(default) | 0 is NO
SILENCE=0
# Debug purpose. Send logs on every successfull builds
# 1 is YES | 0 is NO(default)
LOG_DEBUG=0
##------------------------------------------------------##
##---------Do Not Touch Anything Beyond This------------##
# Check if we are using a dedicated CI ( Continuous Integration ), and
# set KBUILD_BUILD_VERSION and KBUILD_BUILD_HOST and CI_BRANCH
## Set defaults first
CI=DRONE
DISTRO=$(cat /etc/issue)
KBUILD_BUILD_HOST=$(uname -a | awk '{print $2}')
CI_BRANCH=$(git rev-parse --abbrev-ref HEAD)
TERM=xterm
export KBUILD_BUILD_HOST CI_BRANCH TERM
## Check for CI
if [ $CI = "CIRCLECI" ]
then
export KBUILD_BUILD_VERSION=$CIRCLE_BUILD_NUM
export KBUILD_BUILD_HOST="CircleCI"
export CI_BRANCH=$CIRCLE_BRANCH
elif [ $CI = "DRONE" ]
then
export KBUILD_BUILD_VERSION=$DRONE_BUILD_NUMBER
export KBUILD_BUILD_HOST=$DRONE_SYSTEM_HOST
export CI_BRANCH=$DRONE_BRANCH
export BASEDIR=$DRONE_REPO_NAME # overriding
export SERVER_URL="https://cloud.drone.io/ElectroPerf/${DRONE_REPO_NAME}/${KBUILD_BUILD_VERSION}/1/2"
fi
#Check Kernel Version
LINUXVER=$(make kernelversion)
# Set a commit head
COMMIT_HEAD=$(git log --oneline -1)
# Set Date
DATE=$(TZ=Asia/Kolkata date +"%Y-%m-%d")
#Now Its time for other stuffs like cloning, exporting, etc
clone() {
echo " "
if [ $COMPILER = "clang" ]
then
msg "|| Cloning toolchain ||"
git clone --depth=1 https://gitlab.com/ElectroPerf/atom-x-clang.git $KERNEL_DIR/clang
elif [ $COMPILER = "clangxgcc" ]
then
msg "|| Cloning toolchain ||"
git clone --depth=1 https://gitlab.com/ElectroPerf/atom-x-clang.git $KERNEL_DIR/clang
msg "|| Cloning GCC 12.0.0 Bare Metal ||"
git clone https://github.com/mvaisakh/gcc-arm64.git $KERNEL_DIR/gcc64 --depth=1
git clone https://github.com/mvaisakh/gcc-arm.git $KERNEL_DIR/gcc32 --depth=1
elif [ $COMPILER = "gcc" ]
then
msg "|| Cloning GCC Bare Metal ||"
git clone https://github.com/mvaisakh/gcc-arm64.git $KERNEL_DIR/gcc64 --depth=1
git clone https://github.com/mvaisakh/gcc-arm.git $KERNEL_DIR/gcc32 --depth=1
fi
# Toolchain Directory defaults to clang-llvm
TC_DIR=$KERNEL_DIR/clang
# GCC Directory
GCC64_DIR=$KERNEL_DIR/gcc64
GCC32_DIR=$KERNEL_DIR/gcc32
# AnyKernel Directory
AK_DIR=$KERNEL_DIR/Anykernel3
msg "|| Cloning Anykernel ||"
git clone https://github.com/ElectroPerf/AnyKernel3-X00TD.git -b ElectroPerf-P-Wifi $KERNEL_DIR/Anykernel3
if [ $BUILD_DTBO = 1 ]
then
msg "|| Cloning libufdt ||"
git clone https://android.googlesource.com/platform/system/libufdt $KERNEL_DIR/scripts/ufdt/libufdt
fi
}
##----------------------------------------------------------##
# Function to replace defconfig versioning
setversioning() {
# For staging branch
KERNELNAME="ElectroPerf-$LINUXVER-LTO-$VARIANT-X00TD-$(TZ=Asia/Kolkata date +"%Y-%m-%d-%s")"
# Export our new localversion and zipnames
export KERNELNAME
export ZIPNAME="$KERNELNAME.zip"
}
##--------------------------------------------------------------##
exports() {
export KBUILD_BUILD_USER="ElectroPerf"
export ARCH=arm64
export SUBARCH=arm64
if [ $COMPILER = "clang" ]
then
KBUILD_COMPILER_STRING=$("$TC_DIR"/bin/clang --version | head -n 1 | perl -pe 's/\(http.*?\)//gs' | sed -e 's/ */ /g' -e 's/[[:space:]]*$//')
PATH=$TC_DIR/bin/:$PATH
elif [ $COMPILER = "clangxgcc" ]
then
KBUILD_COMPILER_STRING=$("$TC_DIR"/bin/clang --version | head -n 1 | perl -pe 's/\(http.*?\)//gs' | sed -e 's/ */ /g' -e 's/[[:space:]]*$//')
PATH=$TC_DIR/bin:$GCC64_DIR/bin:$GCC32_DIR/bin:/usr/bin:$PATH
elif [ $COMPILER = "gcc" ]
then
KBUILD_COMPILER_STRING=$("$GCC64_DIR"/bin/aarch64-elf-gcc --version | head -n 1)
PATH=$GCC64_DIR/bin/:$GCC32_DIR/bin/:/usr/bin:$PATH
fi
if [ $LTO = "1" ];then
export LD=ld.lld
fi
export PATH KBUILD_COMPILER_STRING
PROCS=$(nproc)
export PROCS
BOT_MSG_URL="https://api.telegram.org/bot$TOKEN/sendMessage"
BOT_BUILD_URL="https://api.telegram.org/bot$TOKEN/sendDocument"
PROCS=$(nproc)
if [ -e $GCC64_DIR/bin/aarch64-elf-gcc ];then
gcc64Type="$($GCC64_DIR/bin/aarch64-elf-gcc --version | head -n 1)"
else
cd $GCC64_DIR
gcc64Type=$(git log --pretty=format:'%h: %s' -n1)
cd $KERNEL_DIR
fi
if [ -e $GCC32_DIR/bin/arm-eabi-gcc ];then
gcc32Type="$($GCC32_DIR/bin/arm-eabi-gcc --version | head -n 1)"
else
cd $GCC32_DIR
gcc32Type=$(git log --pretty=format:'%h: %s' -n1)
cd $KERNEL_DIR
fi
export KBUILD_BUILD_USER ARCH SUBARCH PATH \
KBUILD_COMPILER_STRING BOT_MSG_URL \
BOT_BUILD_URL PROCS TOKEN
}
##---------------------------------------------------------##
tg_post_msg() {
curl -s -X POST "$BOT_MSG_URL" -d chat_id="$CHATID" \
-d "disable_web_page_preview=true" \
-d "parse_mode=html" \
-d text="$1"
}
##---------------------------------------------------------##
tg_post_build() {
#Post MD5Checksum alongwith for easeness
MD5CHECK=$(md5sum "$1" | cut -d' ' -f1)
#Show the Checksum alongwith caption
curl --progress-bar -F document=@"$1" "$BOT_BUILD_URL" \
-F chat_id="$CHATID" \
-F "disable_web_page_preview=true" \
-F "parse_mode=html" \
-F caption="$2 | <b>MD5 Checksum : </b><code>$MD5CHECK</code>"
}
##----------------------------------------------------------##
tg_send_sticker() {
curl -s -X POST "https://api.telegram.org/bot$TOKEN/sendSticker" \
-d sticker="$1" \
-d chat_id="$CHATID"
}
##----------------------------------------------------------------##
tg_send_files(){
KernelFiles="$(pwd)/$KERNELNAME.zip"
MD5CHECK=$(md5sum "$KernelFiles" | cut -d' ' -f1)
SID="CAACAgUAAxkBAAIlv2DEzB-BSFWNyXkkz1NNNOp_pm2nAAIaAgACXGo4VcNVF3RY1YS8HwQ"
STICK="CAACAgUAAxkBAAIlwGDEzB_igWdjj3WLj1IPro2ONbYUAAIrAgACHcUZVo23oC09VtdaHwQ"
MSG="✅ <b>Build Done</b>
- <code>$((DIFF / 60)) minute(s) $((DIFF % 60)) second(s) </code>
<b>Build Type</b>
-<code>$BUILD_TYPE</code>
<b>MD5 Checksum</b>
- <code>$MD5CHECK</code>
<b>Zip Name</b>
- <code>$KERNELNAME.zip</code>"
curl --progress-bar -F document=@"$KernelFiles" "https://api.telegram.org/bot$TOKEN/sendDocument" \
-F chat_id="$CHATID" \
-F "disable_web_page_preview=true" \
-F "parse_mode=html" \
-F caption="$MSG"
tg_send_sticker "$SID"
}
##----------------------------------------------------------##
build_kernel() {
if [ $INCREMENTAL = 0 ]
then
msg "|| Cleaning Sources ||"
make clean && make mrproper && rm -rf out
fi
if [ "$PTTG" = 1 ]
then
tg_post_msg "<b>🔨 EletroPerf Kernel Build Triggered</b>
<b>Docker OS: </b><code>$DISTRO</code>
<b>Build Host: </b><code>$KBUILD_BUILD_HOST</code>
<b>Host Core Count : </b><code>$PROCS</code>
<b>Device: </b><code>$MODEL</code>
<b>Codename: </b><code>$DEVICE</code>
<b>Build Date: </b><code>$DATE</code>
<b>Kernel Name: </b><code>ElectroPerf-LTO-$VARIANT-$DEVICE</code>
<b>Linux Tag Version: </b><code>$LINUXVER</code>
<b>ElectroPerf Build Progress: </b><a href='$SERVER_URL'> Check Here </a>
<b>Builder Info: </b>
<code>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</code>
<code>- $gcc64Type </code>
<code>- $gcc32Type </code>
<code>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</code>
#ElectroPerf #$VARIANT #$DEVICE"
tg_send_sticker "CAACAgQAAxkBAAIl2WDE8lfVkXDOvNEHqCStooREGW6rAAKZAAMWWwwz7gX6bxuxC-ofBA"
fi
if [ $SILENCE = "1" ]
then
MAKE+=( -s )
fi
msg "|| Started Compilation ||"
make O=out $DEFCONFIG
if [ $DEF_REG = 1 ]
then
cp .config arch/arm64/configs/$DEFCONFIG
git add arch/arm64/configs/$DEFCONFIG
git commit -m "$DEFCONFIG: Regenerate
This is an auto-generated commit"
fi
BUILD_START=$(date +"%s")
if [ $COMPILER = "clang" ]
then
make -j"$PROCS" O=out \
CROSS_COMPILE=aarch64-linux-gnu- \
CROSS_COMPILE_ARM32=arm-linux-gnueabi- \
CC=clang \
AR=llvm-ar \
OBJDUMP=llvm-objdump \
STRIP=llvm-strip "${MAKE[@]}" 2>&1 | tee build.log
elif [ $COMPILER = "gcc" ]
then
make -j"$PROCS" O=out \
CROSS_COMPILE_ARM32=arm-eabi- \
CROSS_COMPILE=aarch64-elf- \
AR=aarch64-elf-ar \
OBJDUMP=aarch64-elf-objdump \
STRIP=aarch64-elf-strip \
LD="ld.lld"
elif [ $COMPILER = "clangxgcc" ]
then
make -j"$PROCS" O=out \
CC=clang \
CROSS_COMPILE=aarch64-linux-gnu- \
CROSS_COMPILE_ARM32=arm-linux-gnueabi- \
AR=llvm-ar \
AS=llvm-as \
NM=llvm-nm \
STRIP=llvm-strip \
OBJCOPY=llvm-objcopy \
OBJDUMP=llvm-objdump \
OBJSIZE=llvm-size \
READELF=llvm-readelf \
HOSTCC=clang \
HOSTCXX=clang++ \
HOSTAR=llvm-ar \
CLANG_TRIPLE=aarch64-linux-gnu- "${MAKE[@]}" 2>&1 | tee build.log
fi
BUILD_END=$(date +"%s")
DIFF=$((BUILD_END - BUILD_START))
if [ -f $KERNEL_DIR/out/arch/arm64/boot/$FILES ]
then
msg "|| Kernel successfully compiled ||"
if [ $BUILD_DTBO = 1 ]
then
msg "|| Building DTBO ||"
tg_post_msg "<code>Building DTBO..</code>"
python2 "$KERNEL_DIR/scripts/ufdt/libufdt/utils/src/mkdtboimg.py" \
create "$KERNEL_DIR/out/arch/arm64/boot/dtbo.img" --page_size=4096 "$KERNEL_DIR/out/arch/arm64/boot/dts/$DTBO_PATH"
fi
gen_zip
else
if [ "$PTTG" = 1 ]
then
tg_post_msg "<b>❌Error! Compilaton failed: Kernel Image missing</b>
<b>Build Date: </b><code>$DATE</code>
<b>Kernel Name: </b><code>ElectroPerf-LTO-$VARIANT-$DEVICE</code>
<b>Linux Tag Version: </b><code>$LINUXVER</code>
<b>ElectroPerf Build Failure Logs: </b><a href='$SERVER_URL'> Check Here </a>
<b>Time Taken: </b><code>$((DIFF / 60)) minute(s) $((DIFF % 60)) second(s)</code>
<b>Sed Loif Lmao</b>"
tg_send_sticker "CAACAgUAAxkBAAIl1WDE8FQjVXrayorUvfFq4A7Uv9FwAAKaAgAChYYpVutaTPLAAra3HwQ"
exit -1
fi
fi
}
##--------------------------------------------------------------##
gen_zip() {
msg "|| Zipping into a flashable zip ||"
mv "$KERNEL_DIR"/out/arch/arm64/boot/Image.gz-dtb $AK_DIR/Image.gz-dtb
if [ $BUILD_DTBO = 1 ]
then
mv "$KERNEL_DIR"/out/arch/arm64/boot/dtbo.img $AK_DIR/dtbo.img
fi
cd $AK_DIR
cp -af "$KERNEL_DIR"/init.ElectroSpectrum.rc init.spectrum.rc && sed -i "s/persist.spectrum.kernel.*/persist.spectrum.kernel ElectroPerf-LTO-$VARIANT/g" init.spectrum.rc
cp -af anykernel-real.sh anykernel.sh
sed -i "s/kernel.string=.*/kernel.string=ElectroPerf-R-CAF-STABLE/g" anykernel.sh
sed -i "s/kernel.for=.*/kernel.for=$VARIANT/g" anykernel.sh
sed -i "s/kernel.compiler=.*/kernel.compiler=EVA-GCC/g" anykernel.sh
sed -i "s/kernel.made=.*/kernel.made=Kunmun @ElectroPerf/g" anykernel.sh
sed -i "s/kernel.version=.*/kernel.version=$LINUXVER/g" anykernel.sh
sed -i "s/message.word=.*/message.word=Appreciate your efforts for choosing ElectroPerf kernel./g" anykernel.sh
sed -i "s/build.date=.*/build.date=$DATE/g" anykernel.sh
cd $AK_DIR
zip -r9 "$KERNELNAME.zip" * -x .git README.md anykernel-real.sh .gitignore zipsigner* *.zip
if [ $SIGN = 1 ]
then
## Sign the zip before sending it to telegram
if [ "$PTTG" = 1 ]
then
msg "|| Signing Zip ||"
tg_post_msg "<code>Signing Zip file with AOSP keys..</code>"
fi
cd $AK_DIR
java -jar zipsigner-3.0.jar $KERNELNAME.zip $KERNELNAME-signed.zip
fi
if [ "$PTTG" = 1 ]
then
tg_send_files "$1"
fi
}
setversioning
clone
exports
build_kernel
##----------------*****-----------------------------##