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 Debian releases.

Toolchain installation for out of Yocto builds

To install the toolchain, follow the Yocto Toolchain installation guide.

Setup the environment:

Setup a working directory

$ export WORKDIR=~/var-som-mx6-linux
$ mkdir ${WORKDIR}

Build Linux out of Yocto tree

Fetch source code:

$ cd $WORKDIR
$ git clone https://github.com/varigit/linux-imx.git -b imx_4.9.88_2.0.0_ga-var01 
$ cd  && \
  git checkout imx_4.9.88_2.0.0_ga-var01 && \
  cd ../

Build Kernel, Modules, and DTBs:

Setup the environment:

$ source 

Clean and prepare the kernel:

$ cd ${WORKDIR}/
$ make mrproper
$ make imx_v7_var_defconfig
Customize the kernel configuration (optional step):
$ make menuconfig

Build kernel parts:

Build everything:
$ make -j$(nproc)

Build uImage only:
$ make -j$(nproc) LOADADDR=0x10008000 uImage

Build modules only:
$ make -j$(nproc) LOADADDR=0x10008000 modules

Build device trees only:
$ make -j$(nproc) dtbs
Build individual device trees:

Build the device tree for VAR-SOM-MX6 Dualite/Solo on VAR-MX6CustomBoard with capacitive touchscreen:
$ make -j4 imx6dl-var-som-cap.dtb

Build the device tree for VAR-SOM-MX6 Dualite/Solo on VAR-MX6CustomBoard with resistive touchscreen:
$ make -j4 imx6dl-var-som-res.dtb

Build the device tree for VAR-SOM-MX6 Dualite/Solo on VAR-SOLOCustomBoard:
$ make -j4 imx6dl-var-som-vsc.dtb

Build the device tree for VAR-SOM-MX6 Quad/Dual on VAR-MX6CustomBoard with capacitive touchscreen:
$ make -j4 imx6q-var-som-cap.dtb

Build the device tree for VAR-SOM-MX6 Quad/Dual on VAR-MX6CustomBoard with resistive touchscreen:
$ make -j4 imx6q-var-som-res.dtb

Build the device tree for VAR-SOM-MX6 Quad/Dual on VAR-SOLOCustomBoard:
$ make -j4 imx6q-var-som-vsc.dtb

Build the device tree for VAR-SOM-MX6 QuadPlus/DualPlus on VAR-MX6CustomBoard with capacitive touchscreen:
$ make -j4 imx6qp-var-som-cap.dtb

Build the device tree for VAR-SOM-MX6 QuadPlus/DualPlus on VAR-MX6CustomBoard with resistive touchscreen:
$ make -j4 imx6qp-var-som-res.dtb

Build the device tree for VAR-SOM-MX6 QuadPlus/DualPlus on VAR-SOLOCustomBoard:
$ make -j4 imx6qp-var-som-vsc.dtb

Build the device tree for VAR-SOM-SOLO on VAR-MX6CustomBoard with capacitive touchscreen:
$ make -j4 imx6dl-var-som-solo-cap.dtb

Build the device tree for VAR-SOM-SOLO on VAR-MX6CustomBoard with resistive touchscreen:
$ make -j4 imx6dl-var-som-solo-res.dtb

Build the device tree for VAR-SOM-SOLO on VAR-SOLOCustomBoard:
$ make -j4 imx6dl-var-som-solo-vsc.dtb

Build the device tree for DART-MX6:
$ make -j4 imx6q-var-dart.dtb


Install kernel modules to temporary directory

Create a temporary directory to install the modules:

Optional: delete any old installation from previous builds:
$ rm -rf $WORKDIR/rootfs

Create new directory:
$ mkdir -p $WORKDIR/rootfs

Install the modules to the temporary rootfs:

$ cd ${WORKDIR}/ && \
  make ARCH=arm \
    INSTALL_MOD_STRIP=1 \
    INSTALL_MOD_PATH=$WORKDIR/rootfs \
    modules_install


Notes:

If you replace the kernel image (uImage) 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 images, modules, and device trees on an SD card

Expression error: Unexpected >= operator.

Copy the uImage and device trees to the SD card boot partition, and install the modules in the SD card rootfs partition.
Assuming the boot partition is mounted on /media/user/BOOT-VARMX6 and the rootfs partition is mounted on /media/user/root:

Install the kernel image and modules:
$ cd ${WORKDIR}/
$ cp arch/arm/boot/uImage /media/user/BOOT-VARMX6
$ sudo cp $WORKDIR/rootfs/* /media/user/rootfs

Install the device trees:
$ sudo cp /{imx6q*var*.dtb,imx6dl*var*.dtb} /media/user/BOOT-VARMX6

Notes:

  • If you are using our Debian Recovery SD card, and you want the NAND flash/eMMC installation process to be updated as well as the SD card boot itself, you need to also update the /opt/images/Debian directory.
  • You should always properly unmount your SD card before physically removing it.