Yocto Build Linux
From Variscite Wiki
Build Linux from source code
It is recommended to build the kernel image using Yocto (see the Customizing the Linux kernel page) instead of using the direct method described in this page.
This is because some of the Yocto packages may depend on the kernel, like the WiFi module that is built from outside of the kernel source tree on some of the Yocto releases.
This is because some of the Yocto packages may depend on the kernel, like the WiFi module that is built from outside of the kernel source tree on some of the Yocto releases.
Toolchain installation for out of Yocto builds
To install the toolchain, follow the Yocto Toolchain installation guide.
Build Linux out of Yocto tree
Get the Linux source code:
$ git clone https://github.com/varigit/linux-imx.git $ cd linux-imx $ git checkout lf-5.10.y_var04
Build the Linux kernel:
$ source /opt/fslc-xwayland/3.3/environment-setup-cortexa53-crypto-fslc-linux
$ unset LDFLAGS
$ make mrproper $ make imx8_var_defconfig
Customize the kernel configuration (optional step): $ make menuconfig
Build everything: $ make -j4
Build Image.gz only: $ make -j4 Image.gz Build modules only: $ make -j4 modules Build device trees only: $ make -j4 dtbs
Build only the device tree for DART-MX8M-MINI on DT8MCustomBoard V2.x and above: $ make -j4 freescale/imx8mm-var-dart-dt8mcustomboard.dtb Build only the device tree for DART-MX8M-MINI on with Cortex-M4 DT8MCustomBoard V2.x and above: $ make -j4 freescale/imx8mm-var-dart-dt8mcustomboard-m4.dtb Build only the device tree for DART-MX8M-MINI on DT8MCustomBoard V1.x: $ make -j4 freescale/imx8mm-var-dart-dt8mcustomboard-legacy.dtb Build only the device tree for DART-MX8M-MINI on with Cortex-M4 DT8MCustomBoard V1.x: $ make -j4 freescale/imx8mm-var-dart-dt8mcustomboard-legacy-m4.dtb Build only the device tree for VAR-SOM-MX8M-MINI on Symphony-Board V1.4A and above: $ make -j4 freescale/imx8mm-var-som-symphony.dtb Build only the device tree for VAR-SOM-MX8M-MINI with Cortex-M4 on Symphony-Board V1.4A and above: $ make -j4 freescale/imx8mm-var-som-symphony-m4.dtb Build only the device tree for VAR-SOM-MX8M-MINI on Symphony-Board V1.4 and below: $ make -j4 freescale/imx8mm-var-som-symphony-legacy.dtb Build only the device tree for VAR-SOM-MX8M-MINI with Cortex-M4 on Symphony-Board V1.4 and below: $ make -j4 freescale/imx8mm-var-som-symphony-legacy-m4.dtb
Notes:
If you replace the kernel image (Image.gz) on your system, you also need to reinstall the kernel modules, and vice versa.
If you just want to make a change in the device tree, you can compile and replace it without replacing the kernel image and modules.
Install the built kernel on an SD card
Copy the Image.gz and device trees to the SD card boot partition, and install the modules in the SD card rootfs partition.
Assuming the rootfs partition is mounted on /media/user/rootfs:
Install the kernel image and modules: $ kver=$(strings arch/arm64/boot/Image | grep -i "Linux version" | awk '{print $3}') $ sudo cp arch/arm64/boot/Image.gz /media/user/rootfs/boot/Image.gz-${kver} $ sudo ln -fs /boot/Image.gz-${kver} /media/user/rootfs/boot/Image.gz $ sudo make ARCH=arm64 modules_install INSTALL_MOD_PATH=/media/user/rootfs Install the device trees: $ sudo cp arch/arm64/boot/dts/freescale/*imx*var*.dtb /media/user/rootfs/boot/