===== Preface ===== The instructions on this page have been tested on () in a VMWare virtual machine. The //meta-tq// layer extends the //Yocto Project's// reference system //Poky// to provide support for a selection of TQ Embedded CPU Modules, including the . It uses the same codebase as the [[..:arm::linux:ptxdist:overview|PTXdist based TQ Linux BSPs]] and therefore provides the same versions of U-Boot and Linux kernel, but doesn't define a specific root filesystem configuration. The instructions on this page refer to the BSP and ancillary tools listed in the following table: ^ BSP Revision((refers to the revision of the [[..:arm::linux:ptxdist:overview|PTXdist based TQ Linux BSP]], which provides the codebase of U-Boot and Linux kernel)) ^ ^ ^ ++meta-tq release|\\ [[https://github.com/tq-systems/meta-tq/releases|all releases]]++ | [[https://github.com/tq-systems/meta-tq/releases/tag/..BSP.SW.|..BSP.SW.]] | ^ Yocto Project / Poky Release | ++. - |\\ ''git clone -b git:%%//%%git.yoctoproject.org%%/%%poky.git''\\ [[http:///yocto-/|]]++ | ^ Target machine((i.e. value for [[http:///./ref-manual/ref-manual.html#var-MACHINE|MACHINE]] variable)) | | ^ U-Boot | | ^ Linux Kernel | | \\ It's strongly recommended to use **git** for downloading both the //Yocto Project / Poky// Release as well as //meta-tq// (instead of downloading archives and extracting them). The goal of these wiki pages is to get you started using //meta-tq// with the , so instead of reinventing the wheel we will adhere to the very compact [[http:///./yocto-project-qs/yocto-project-qs.html|Yocto Project Quick Start]] and supply details specific to the where necessary.\\ \\ For further details regarding //Yocto Project// . - please refer to its [[https://www.yoctoproject.org/documentation/archived|official documentation]]. ===== Prerequisites ===== //Yocto Project / Poky// requires a Linux build host, so first of all you need a development workstation (or a virtual machine((for testing purposes //Yocto Project// provides a ready to use virtual machine called [[https://www.yoctoproject.org/tools-resources/projects/build-appliance|Build Appliance]]))) with a (preferably) recent Linux distribution installed. Please refer to section [[http:///./yocto-project-qs/yocto-project-qs.html#the-linux-distro|The Linux Distribution]] of the //Yocto Project Quick Start// for supported linux distributions and section [[http:///./yocto-project-qs/yocto-project-qs.html#packages|The Build Host Packages]] for required build host packages for those distributions. Although not required by //Yocto Project / Poky//, we also recommend to configure and run a [[en:tftp|tftp server]] (for image download / update) and an [[en:nfs|nfs server]] (for network mounted root filesystem) on your development host. ===== Yocto Project / Poky set-up ===== The [[http:///./yocto-project-qs/yocto-project-qs.html|Yocto Project Quick Start]] document explains how to set up //Yocto Project / Poky// and how to build images using the //meta-intel// layer. Using this as a guideline, the following table describes how to use the //meta-tq// layer for the . ^ Section ^ Remarks / Instructions for //meta-tq// & ^ | [[http:///./yocto-project-qs/yocto-project-qs.html#welcome|Welcome!]] | Introduction and basic information about the //Yocto Project// | | [[http:///./yocto-project-qs/yocto-project-qs.html#yp-intro|Introducing the Yocto Project Development Environment]] | ::: | | [[http:///./yocto-project-qs/yocto-project-qs.html#yp-resources|Setting Up to use the Yocto Project]] | Description of basic requirements for using the //Yocto Project// (also cf. [[..:arm::linux:yocto:quickstart_yocto#Prerequisites]] above) | | [[http:///./yocto-project-qs/yocto-project-qs.html#releases|Yocto Project Release]] | Instructions on how to install a release of the //Yocto Project// on the Build Host\\ \\ $ git checkout 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 in one step by executing $ git clone -b git://git.yoctoproject.org/poky.git | | [[http:///./yocto-project-qs/yocto-project-qs.html#qs-building-images|Building Images]] | This section provides step-by-step instructions for - //Building An Image for Emulation//((7 steps, explicitly aims at emulation using //qemu//)) - //Building An Image for Hardware//((5 steps, targets real hardware )) To sucessfully build an image for hardware you have to carry out steps from both subsections((subsection headings may be missing in //Yocto Project Quick Start// (depends on //Poky// version) )) as follows. ==== Building an Image for Emulation ==== 1. Be Sure Your Build Host is Set Up: See above\\ 2. Check Out Your Branch: $ git checkout You can skip this step if you checked out branch already when/after cloning the //poky// repository.\\ 3. Initialize the Build Environment: $ source oe-init-build-env The above is absolutely required, otherwise the subsequent steps will not work!\\ 5. - 7. You can skip these steps, they are not required for using //meta-tq//. ==== Building an Image for Hardware ==== 1. Create a Local Copy of $ cd $HOME/poky $ git clone -b https://github.com/tq-systems/meta-tq.git 3. Initialize the Build Environment: $ source oe-init-build-env 3. Configure the Build((valid machines are\\ )): $ cd $HOME/poky/build $ bitbake-layers add-layer "../meta-tq" $ bitbake-layers add-layer "../meta-ti" $ echo 'MACHINE = ""' >> conf/local.conf 4. Build an Image for : $ bitbake The resulting image is ''tmp/deploy/images/((valid machines are\\ ))/-((valid machines are\\ )).wic''\\ 5. Write the Image((valid machines are\\ ))((''TARGET_DEVICE'' has to be an SD card)) $ sudo dd if=tmp/deploy/images//-.wic of=TARGET_DEVICE 6. Boot the from SD card (cf. [[..:arm:::dip_switches| DIP switch settings]]) |