Skip to content

iMX8MM U Boot & Kernel Source (4.14.78)

kkapranov edited this page Feb 19, 2019 · 2 revisions

How to get CompuLab Kernel, U-Boot source

Download CompuLab BSP

git clone -b devel-imx8mm-4.14.78 https://github.com/compulab-yokneam/meta-compulab-bsp.git
export BSP=$(pwd)/meta-compulab-bsp

Prepare Environment

  • To get Kernel source set these variables:
export ORIGIN=https://source.codeaurora.org/external/imx/linux-imx.git
export HEAD=rel_imx_4.14.78_1.0.0_ga
export PATCHES=${BSP}/meta-bsp-imx8mm/recipes-kernel/linux/compulab/imx8mm
  • To get U-Boot source set these variables:
export ORIGIN=https://source.codeaurora.org/external/imx/uboot-imx.git
export HEAD=rel_imx_4.14.78_1.0.0_ga
export PATCHES=${BSP}/meta-bsp-imx8mm/recipes-bsp/u-boot/compulab/imx8mm

Apply Patches

git clone ${ORIGIN} src
git -C src checkout -b development ${HEAD}
git -C src am ${PATCHES}/*.patch