~~NOCACHE~~
{{template>en:templates:tabs_test|lang="intern"|mod_name="tqmls102xa"|mod_name_head="TQMLS102xA"|mod_arch="arm"|bsp_name="Yocto"|bsp_name_head="Linux"}}
===== PAGE TITLE (H2) =====
Some text can go here.
==== TOP LEVEL SECTION #1 (H3) ====
Some text can go here.
The instructions on this page have been tested on Ubuntu @ubuntu_version@ (64 bit) in a VMWare virtual machine.
=== SUB SECTION (H4) ===
List something:
* Item A
* Item B
==== TOP LEVEL SECTION #2 (H3) ====
Tables are nice:
^ Section ^ Remarks / Instructions for meta-tq & STKLS102xA ^
| [[http://www.yoctoproject.org/docs/2.2.1/yocto-project-qs/yocto-project-qs.html#welcome|Welcome!]] | |
| [[http://www.yoctoproject.org/docs/2.2.1/yocto-project-qs/yocto-project-qs.html#yp-intro|Introducing the Yocto Project Development Environment]] | |
| [[http://www.yoctoproject.org/docs/2.2.1/yocto-project-qs/yocto-project-qs.html#yp-resources|Setting Up to Use the Yocto Project]] | |
| [[http://www.yoctoproject.org/docs/2.2.1/yocto-project-qs/yocto-project-qs.html#releases|Yocto Project Release]] | __//Caveat//__:
$ git checkout morty
will not work unless you change into the ''poky'' directory (i.e. the freshly cloned Poky repository).\\ Alternatively you can clone the Poky repository and checkout branch morty immediately using
$ git clone -b morty git://git.yoctoproject.org/poky.git
|
| [[http://www.yoctoproject.org/docs/2.2.1/yocto-project-qs/yocto-project-qs.html#qs-building-images|Building Images]] | __Important:__\\ Make sure you initialize your build environment (step #3), this is required for the subsequent steps.\\ You can skip steps # 5-7 in subsection [[http://www.yoctoproject.org/docs/2.2.1/yocto-project-qs/yocto-project-qs.html#building-an-image-for-emulation|Building an Image for Emulation]] (these are not required for meta-tq). |
| [[http://www.yoctoproject.org/docs/2.2.1/yocto-project-qs/yocto-project-qs.html#building-an-image-for-hardware|Building an Image for Hardware]] | 1. Create a Local Copy of the meta-tq Repository:
$ cd $HOME/poky
$ git clone -b morty https://github.com/tq-systems/meta-tq.git
2. Configure the Build:
$ cd $HOME/poky/build
$ bitbake-layers add-layer "../meta-tq"
$ echo 'MACHINE = "tqmls102xa-mbls102xa"' >> conf/local.conf
3. Build an Image for STKLS102xA:
$ bitbake core-image-minimal
The resulting image is ''tmp/deploy/images/tqmls102xa-mbls102xa/core-image-minimal.wic''\\ 4. Write the Image
$ sudo dd if=tmp/deploy/images/tqmls102xa-mbls102xa/core-image-minimal.wic of=TARGET_DEVICE
|