-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
48 lines (43 loc) · 1.46 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
#!/usr/bin/env bash
# Copyright (C) 2020 Mohammad Iqbal (predator112)
# Configured for Redmi Note 5 Pro / whyred custom kernel source
# Simple Local Kernel Build Script
# Clone AnyKernel
if ! [ -d "$PWD/AnyKernel" ]; then
git clone https://github.com/PREDATOR-project/AnyKernel3.git -b BangBroz-oldcam --depth=1 AnyKernel3
else
echo "AnyKernel3 folder is exist, not cloning"
fi
# Main Environment
KERNEL_DIR=/home/loli/kernel
IMAGE=/home/loli/kernel/out/arch/arm64/boot/Image.gz-dtb
ZIP_DIR=/home/loli/kernel/AnyKernel3
CLANG_DIR=/home/loli/install
CONFIG_DIR=$KERNEL_DIR/arch/arm64/configs
CORES=$(grep -c ^processor /proc/cpuinfo)
THREAD="-j$CORES"
# export
export KBUILD_BUILD_USER=builder
export KBUILD_BUILD_HOST=MohammadIqbal
export ARCH=arm64
export LD_LIBRARY_PATH="/home/loli/install/bin/../lib:$PATH"
# compile plox
make -C $(pwd) -j$(nproc) O=out ugglite_msm8937_defconfig
PATH="/home/loli/install/bin:${PATH}"
make -j$(nproc) O=out ARCH=arm64 \
CC=clang \
CLANG_TRIPLE=aarch64-linux-gnu- \
CROSS_COMPILE=aarch64-linux-gnu- \
CROSS_COMPILE_ARM32=arm-linux-gnueabi-
O=out| tee build.log
if ! [ -a "$IMAGE" ]; then
finerr
exit 1
fi
cp out/arch/arm64/boot/Image.gz-dtb AnyKernel3
# Compress to zip file
cd /home/loli/kernel/AnyKernel3
make clean &>/dev/null
make normal &>/dev/null
cd ..
echo -e "The build is complete, and is in the directory $ZIP_DIR"