hank-chen/meta-atmel
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
This Layer depends on : URI: git://git.yoctoproject.org/poky URI: http://git.yoctoproject.org/git/poky Tag: danny-8.0.1 OpenEmbedded/Yocto layer for for Atmel AT91SAM SoC For now it supports only SAMAD3 product family (http://www.atmel.com/products/microcontrollers/arm/sama5d3.aspx) It is hosted on http://github.com/linux4sam/meta-atmel --- Build procedure: 1/ Clone yocto/poky git repository git clone git://git.yoctoproject.org/poky 2/ Checkout danny-8.0.1 tag cd poky git checkout danny-8.0.1 -b my_branch 3/ Clone meta-atmel layer git clone http://github.com/linux4sam/meta-atmel 4/ Initialize build directory source oe-init-build-env build-atmel 5/ Add meta-atmel layer patch to bblayer configuration file vim conf/bblayers.conf: # LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf # changes incompatibly LCONF_VERSION = "6" BBPATH = "${TOPDIR}" BBFILES ?= "" BBLAYERS ?= " \ /home/pvilchez/workspace/github/poky/meta-atmel \ /home/pvilchez/workspace/github/poky/meta \ /home/pvilchez/workspace/github/poky/meta-yocto \ /home/pvilchez/workspace/github/poky/meta-yocto-bsp \ " 5/ Edit local.conf to specify the machine, location of source archived, package type (rpm, deb or ipk) vim conf/bblayers.conf: [...] MACHINE ??= "sama5d3xek" [...] DL_DIR ?= "your_download_directory_path" [...] PACKAGE_CLASSES ?= "package_ipk" 6/ Build core minimal image bitbake core-image-minimal 7/ Build Atmel Qt-embedded demo bitbake atmel-qt4e-demo-image