hey i m trying to compile imx8qm kernel code for Android automotive platform.
when i was use imx-make.sh file i can compile all kernel source .but i want compile each side by one by
for example modules only or dts without using imx-make.sh .
seems imx8qm uses
arch/arm64/configs/gki_defconfig
also merge it
mek_8q/automotive_addition_car2_defconfig and configs/imx8q_car_gki.fragment
as understood.
after than how can i compile kernel like
make ARCH=arm64 CROSS_COMPILE=${AARCH64_GCC_CROSS_COMPILE} <...defconfig>
make ARCH=arm64 CROSS_COMPILE=${AARCH64_GCC_CROSS_COMPILE} dtbs
make ARCH=arm64 CROSS_COMPILE=${AARCH64_GCC_CROSS_COMPILE} modules
my system envs.
export AARCH64_GCC_CROSS_COMPILE=~/gcc-arm-9.2-2019.12-x86_64-aarch64-none-elf/bin/aarch64-none
-elf-
export CLANG_PATH=~/prebuilt-android-clang
export PATH=~/prebuilt-android-kernel-build-tools/linux-x86/bin:$PATH
export ARMGCC_DIR=~/gcc-arm-none-eabi-7-2018-q2-update
thank u for reply again.