forked from arter97/android_kernel_xiaomi_sdm845
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_master.sh
executable file
·36 lines (32 loc) · 921 Bytes
/
build_master.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
#!/bin/bash
if [[ "${1}" != "skip" ]] ; then
./build_clean.sh
./build_kernel.sh stock "$@" || exit 1
fi
VERSION="$(cat version)-$(date +%F | sed s@-@@g)"
if [ -e boot.img ] ; then
rm arter97-kernel-$VERSION.zip 2>/dev/null
# Pack AnyKernel2
rm -rf kernelzip
mkdir -p kernelzip/dtbs
cp arch/arm64/boot/Image.gz kernelzip/
find arch/arm64/boot -name '*.dtb' -exec cp {} kernelzip/dtbs/ \;
echo "
kernel.string=arter97 kernel $(cat version) @ xda-developers
do.devicecheck=1
do.modules=0
do.cleanup=1
do.cleanuponabort=0
device.name1=beryllium
block=/dev/block/bootdevice/by-name/boot
is_slot_device=auto
ramdisk_compression=auto
" > kernelzip/props
cp -rp ~/android/anykernel/* kernelzip/
cd kernelzip/
7z a -mx0 arter97-kernel-$VERSION-tmp.zip *
zipalign -v 4 arter97-kernel-$VERSION-tmp.zip ../arter97-kernel-$VERSION.zip
rm arter97-kernel-$VERSION-tmp.zip
cd ..
ls -al arter97-kernel-$VERSION.zip
fi