Yocto Customizing the Linux kernel: Difference between revisions

From Variscite Wiki
No edit summary
No edit summary
Line 108: Line 108:
and append the following lines to it (see the previous section for listing the commits or getting the latest commit id):
and append the following lines to it (see the previous section for listing the commits or getting the latest commit id):


  KERNEL_SRC_{{#var:MACHINE_NAME}} = <nowiki>"git://${BSPDIR}/local_repos/linux-2.6-imx;protocol=file"</nowiki>
  KERNEL_SRC = <nowiki>"git://${BSPDIR}/local_repos/linux-2.6-imx;protocol=file"</nowiki>
  SRCBRANCH_{{#var:MACHINE_NAME}} = "{{#var:KERNEL_BRANCH}}" ''(or your own created branch)''
  SRCBRANCH = "{{#var:KERNEL_BRANCH}}" ''(or your own created branch)''
  SRCREV_{{#var:MACHINE_NAME}} = "''The commit id you'd like to use''"
  SRCREV = "''The commit id you'd like to use''"


<u>U-Boot</u>:
<u>U-Boot</u>:
Line 120: Line 120:
and append the following lines to it (see the previous section for listing the commits or getting the latest commit id):
and append the following lines to it (see the previous section for listing the commits or getting the latest commit id):


  UBOOT_SRC_{{#var:MACHINE_NAME}} = <nowiki>"git://${BSPDIR}/local_repos/uboot-imx;protocol=file"</nowiki>
  UBOOT_SRC = <nowiki>"git://${BSPDIR}/local_repos/uboot-imx;protocol=file"</nowiki>
  SRCBRANCH_{{#var:MACHINE_NAME}} = "{{#var:U-BOOT_BRANCH}}" ''(or your own created branch)''
  SRCBRANCH = "{{#var:U-BOOT_BRANCH}}" ''(or your own created branch)''
  SRCREV_{{#var:MACHINE_NAME}} = "''The commit id you'd like to use''"
  SRCREV = "''The commit id you'd like to use''"


Also update the u-boot-fw-utils recipe:
Also update the u-boot-fw-utils recipe:
Line 153: Line 153:
and append the following lines to it (see the previous section for listing the commits or getting the latest commit id):
and append the following lines to it (see the previous section for listing the commits or getting the latest commit id):


  KERNEL_SRC_{{#var:MACHINE_NAME}} = <nowiki>"git://github.com/customer/linux-2.6-imx.git;protocol=git"</nowiki>
  KERNEL_SRC = <nowiki>"git://github.com/customer/linux-2.6-imx.git;protocol=git"</nowiki>
  SRCBRANCH_{{#var:MACHINE_NAME}} = "{{#var:KERNEL_BRANCH}}" ''(or your own created branch)''
  SRCBRANCH = "{{#var:KERNEL_BRANCH}}" ''(or your own created branch)''
  SRCREV_{{#var:MACHINE_NAME}} = "''The commit id you'd like to use''"
  SRCREV = "''The commit id you'd like to use''"


<u>U-Boot</u>:
<u>U-Boot</u>:
Line 165: Line 165:
and append the following lines to it (see the previous section for listing the commits or getting the latest commit id):
and append the following lines to it (see the previous section for listing the commits or getting the latest commit id):


  UBOOT_SRC_{{#var:MACHINE_NAME}} = <nowiki>"git://github.com/customer/uboot-imx.git;protocol=git"</nowiki>
  UBOOT_SRC = <nowiki>"git://github.com/customer/uboot-imx.git;protocol=git"</nowiki>
  SRCBRANCH_{{#var:MACHINE_NAME}} = "{{#var:U-BOOT_BRANCH}}" ''(or your own created branch)''
  SRCBRANCH = "{{#var:U-BOOT_BRANCH}}" ''(or your own created branch)''
  SRCREV_{{#var:MACHINE_NAME}} = "''The commit id you'd like to use''"
  SRCREV = "''The commit id you'd like to use''"


Also update the u-boot-fw-utils recipe:
Also update the u-boot-fw-utils recipe:

Revision as of 12:50, 14 September 2017

DART-6UL - Customizing the Linux kernel and U-Boot

Choose one of the following three methods to customize U-Boot and the Linux kernel and build them using Yocto:

Add your own patches on top of our source code

Using this method Yocto will take the source code from our default remote repository, and apply your patches to it before building it:

Get the source code by cloning our repository:
Linux:

$ cd ~/var-fslc-yocto
$ mkdir -p local_repos
$ cd local_repos
$ git clone https://github.com/varigit/linux-2.6-imx.git
$ cd linux-2.6-imx
$ git checkout imx-rel_imx_4.1.15_2.0.0_ga-var02

U-Boot:

$ cd ~/var-fslc-yocto
$ mkdir -p local_repos
$ cd local_repos
$ git clone https://github.com/varigit/uboot-imx.git
$ cd uboot-imx
$ git checkout imx_v2015.04_4.1.15_1.1.0_ga_var03


Make your changes in the source code and create a patch:
You can use either diff or patch file types.
For example:

$ cd ~/var-fslc-yocto/local_repos/linux-2.6-imx
$ gedit arch/arm/boot/dts/imx6qdl-var-som.dtsi
edit and save

$ git diff > imx6qdl-var-som_device_tree_changes.diff


Update the recipes to use your patch:
Linux:
Copy your patch:

$ cd ~/var-fslc-yocto/sources/meta-variscite-fslc/recipes-kernel/linux/
$ mkdir -p files
$ cp ~/var-fslc-yocto/local_repos/linux-2.6-imx/imx6qdl-var-som_device_tree_changes.diff  files/

Create a linux-variscite_4.1.15.bbappend file:

$ gedit linux-variscite_4.1.15.bbappend

and append the following line to it:

SRC_URI += "file://imx6qdl-var-som_device_tree_changes.diff"

U-Boot:
Copy your patch:

$ cd ~/var-fslc-yocto/sources/meta-variscite-fslc/recipes-bsp/u-boot/
$ mkdir -p files
$ cp ~/var-fslc-yocto/local_repos/uboot-imx/my_u-boot_changes.diff  files/

Create a u-boot-variscite.bbappend file:

$ gedit u-boot-variscite.bbappend

and append the following line to it:

SRC_URI += "file://my_u-boot_changes.diff"

Also update the u-boot-fw-utils recipe:

$ cp u-boot-variscite.bbappend u-boot-fw-utils.bbappend

Use a local repository

Using this method Yocto will take the kernel/U-Boot source from a local repository instead of our remote ones on github:

Get the source code by cloning our repository:
Linux:

$ cd ~/var-fslc-yocto
$ mkdir -p local_repos
$ cd local_repos
$ git clone https://github.com/varigit/linux-2.6-imx.git
$ cd linux-2.6-imx
$ git checkout imx-rel_imx_4.1.15_2.0.0_ga-var02

U-Boot:

$ cd ~/var-fslc-yocto
$ mkdir -p local_repos
$ cd local_repos
$ git clone https://github.com/varigit/uboot-imx.git
$ cd uboot-imx
$ git checkout imx_v2015.04_4.1.15_1.1.0_ga_var03


Make your changes in the source code and commit them:
After making changes in the source code you need to commit them.
For example:

$ cd ~/var-fslc-yocto/local_repos/linux-2.6-imx
$ gedit arch/arm/boot/dts/imx6qdl-var-som.dtsi
edit and save

$ git commit -a -m "imx6qdl-var-som device tree changes"
To list all of the commits:
$ git log
Get the latest commit id:
$ git rev-parse HEAD


Update the recipes to use the local repository instead of the default one:
Linux:

$ cd ~/var-fslc-yocto/sources/meta-variscite-fslc/recipes-kernel/linux/

Create a linux-variscite_4.1.15.bbappend file:

$ gedit linux-variscite_4.1.15.bbappend

and append the following lines to it (see the previous section for listing the commits or getting the latest commit id):

KERNEL_SRC = "git://${BSPDIR}/local_repos/linux-2.6-imx;protocol=file"
SRCBRANCH = "imx-rel_imx_4.1.15_2.0.0_ga-var02" (or your own created branch)
SRCREV = "The commit id you'd like to use"

U-Boot:

$ cd ~/var-fslc-yocto/sources/meta-variscite-fslc/recipes-bsp/u-boot/

Create a u-boot-variscite.bbappend file:

$ gedit u-boot-variscite.bbappend

and append the following lines to it (see the previous section for listing the commits or getting the latest commit id):

UBOOT_SRC = "git://${BSPDIR}/local_repos/uboot-imx;protocol=file"
SRCBRANCH = "imx_v2015.04_4.1.15_1.1.0_ga_var03" (or your own created branch)
SRCREV = "The commit id you'd like to use"

Also update the u-boot-fw-utils recipe:

$ cp u-boot-variscite.bbappend u-boot-fw-utils.bbappend


For the SRCREV value you can also use "${AUTOREV}" during development to get the latest commit of the branch

Use your own remote repository on github

Using this method Yocto will take the source code from your own remote repository on github:

Create your own github account and upload your proprietary kernel and U-Boot to new repositories:
For example, you can fork our repositories to your own account by visiting the following links and clicking on "Fork" at the top right of the screen.
Alternatively, you can clone our repositories to your local machine, and push them later to your own account.

Linux:
https://github.com/varigit/linux-2.6-imx/tree/imx-rel_imx_4.1.15_2.0.0_ga-var02

U-Boot:
https://github.com/varigit/uboot-imx/tree/imx_v2015.04_4.1.15_1.1.0_ga_var03


Update the recipes to use your remote repository instead of the default one:

Linux:

$ cd ~/var-fslc-yocto/sources/meta-variscite-fslc/recipes-kernel/linux/

Create a linux-variscite_4.1.15.bbappend file:

$ gedit linux-variscite_4.1.15.bbappend

and append the following lines to it (see the previous section for listing the commits or getting the latest commit id):

KERNEL_SRC = "git://github.com/customer/linux-2.6-imx.git;protocol=git"
SRCBRANCH = "imx-rel_imx_4.1.15_2.0.0_ga-var02" (or your own created branch)
SRCREV = "The commit id you'd like to use"

U-Boot:

$ cd ~/var-fslc-yocto/sources/meta-variscite-fslc/recipes-bsp/u-boot/

Create a u-boot-variscite.bbappend file:

$ gedit u-boot-variscite.bbappend

and append the following lines to it (see the previous section for listing the commits or getting the latest commit id):

UBOOT_SRC = "git://github.com/customer/uboot-imx.git;protocol=git"
SRCBRANCH = "imx_v2015.04_4.1.15_1.1.0_ga_var03" (or your own created branch)
SRCREV = "The commit id you'd like to use"

Also update the u-boot-fw-utils recipe:

$ cp u-boot-variscite.bbappend u-boot-fw-utils.bbappend


For the SRCREV value you can also use "${AUTOREV}" during development to get the latest commit of the branch