This source code already contains WiFi and Audio drivers that were not included in the original Xiaomi code. Also, added AOSP Device Tree Compiler (DTC) to compile DTB and DTBO trees.
Differences from stock are minimal:
- Removed incompatible architectures
- TTL target support
- Some TCP congestion-avoidance algorithms
- CPU frequency statistics for the schedutil governor
- Various minor changes
Create a working folder, for example kernel:
mkdir kernel
cd kernelDownload kernel source:
git clone --depth=1 https://github.com/tifictive/kernel_joyeuse.git kernel_joyeuseDownload a compatible GCC toolchain. I used AOSP GCC 4.9 for arm64.
git clone https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9 aarch64-linux-androidDownload Clang toolchain. I used Proton Clang, you can use another suitable one, for example AOSP Clang.
git clone https://github.com/kdrag0n/proton-clang.git proton-clangMove to the kernel folder:
cd kernel_joyeuseSetup default config:
./build.sh custj_defconfigNote: build.sh - a simple script that sets up environment variables and starts the compilation process.
Optional. You can tweak some kernel parameters:
./build.sh menuconfigCompiling:
./build.shIf the compilation passed without errors, then in the arch/arm64/boot folder you will see the following files:
Image.gz- kernel imagedtbo.img- board-specific device tree overlaydtb- SoC device tree blob
These files must be flashed into the boot section of the phone. To do this, we will use the AnyKernel3 utility.
Download AnyKernel3.zip, unpack and change the following lines in anykernel.sh file as shown below:
kernel.string=Kernel for Joyeuse
do.devicecheck=1
do.modules=0
do.systemless=1
do.cleanup=1
do.cleanuponabort=0
device.name1=joyeuse
# remove others lines like "device.name*"!
block=/dev/block/bootdevice/by-name/boot;
Also remove the lines from # begin ramdisk changes to # end ramdisk changes.
Place the files Image.gz, dtbo.img and dtb where the script is located and repack all the contents of the folder into a zip archive.
Reboot into recovery mode, backup the boot and dtbo partitions. Then install our zip archive. Reboot into the system.