1,370
edits
Changes
From IGEP - ISEE Wiki
→How to cross compile the linux kernel
Newest kernels can require build the dtbs too as:
make ARCH=arm CROSS_COMPILE=[cross compiler] zImage modules dtbs
The result will be a zImage file in ${KERNEL_SOURCES}/arch/arm/boot directory.
make ARCH=arm CROSS_COMPILE=[cross compiler] modules_install INSTALL_MOD_PATH=[path to your target rootfs]
Example: make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- omap2plus_defconfig<br>make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- zImage modules dtbs<br>make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- modules_install INSTALL_MOD_PATH=/media/user/rootfs
=Stable kernels=