Skip to content

Instantly share code, notes, and snippets.

@Semant1ka
Last active December 19, 2017 13:49
Show Gist options
  • Save Semant1ka/cb97c41cfde3c5c510e79c32f4bce4c7 to your computer and use it in GitHub Desktop.
Save Semant1ka/cb97c41cfde3c5c510e79c32f4bce4c7 to your computer and use it in GitHub Desktop.
yocto references

SABRE for Automotive Infotainment Based on the i.MX 6 Series reference

What is Yocto.

What is FSL-Community-BSP (FSL= Freescale, BSP = Board Support Package)

How to build basic image

All detailed information about bitbake and other Yocto stuff see in Huge Yocto development guide

Bitbake Cheat Sheet:

cd fsl-community-bsp

# run setup script without arguments to see man
source setup-environment

# pass build folder to setup environment variales according to conf/local.conf in that folder
source setup-environment %build_folder%

# build basic image
bitbake fsl-image-machine-test

# list all available targets (packages and images bitbake recepies)
bitbake -s

# build package
bitbake %package-name%

# update package index
bitbake package-index

# build SDK
bitbake fsl-image-machine-test -c populate_sdk

Qemu

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment