...
Contents
Table of Contents |
---|
...
git clone –branch master https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux.git
export ARCH=arm CROSS_COMPILE=<External ARM toolchain prefix, e.g. arm-linux-gnueabihf→
make imx_v6_v7_defconfig
# optionally modify the default configuration
make zImage dtbs modules
...
arch/arm/zImage
arch/arm/boot/dts/*.dtb
Infonote |
---|
The standard configuration is very minimal, you will want to add additional features such as file systems, PCI device drivers and Control-Group support for systemd! For more information about systemd, refer to the corresponding wiki page of the Gentoo project. |
...
git clone –branch 3.14-1.0.x-mx6-sr-next https://github.com/SolidRun/linux-fslc.git
export CROSS_COMPILE=<External ARM toolchain prefix>
export ARCH=arm
make imx_v7_cbi_hb_defconfig
# optionally modify the default configuration
make zImage dtbs modules
...
Booting a kernel
Please refer to this section on how to boot a kerneli.MX6 U-Boot on our U-Boot page.