This kernel matches the stock kernel's Linux version and is likely very similar. It can be used to build kernel modules, like a driver for an external wifi adapter.
- Prepare kernel & toolchain
- Clone this repo
- Download Linaro 6.3.1 toolchain
make ARCH=arm64 tbt8a10_defconfig
- Build module
- Go to the directory where the source code of the module you want to build is
make ARCH=arm64 CROSS_COMPILE=<toolchain-path>/bin/aarch64-linux-gnu- -C <kernel source path>/ M=<module source path>/
- Push the
<module>.ko
to your device & load it withinsmod <module>.ko