diff options
author | Kévin THIERRY <kevin.thierry@open.eurogiciel.org> | 2014-10-08 09:24:57 +0200 |
---|---|---|
committer | Patrick Ohly <patrick.ohly@intel.com> | 2015-01-09 09:23:11 -0800 |
commit | 2d3cf8030dfd83ec0e85d9bbe61c3ef7d8ff306c (patch) | |
tree | 98deb21c89ccf4311ed705e88032020e388ee83b | |
parent | 26505d5d96deff6e36c87b764ea81d13653e46d4 (diff) | |
download | tizen-distro-2d3cf8030dfd83ec0e85d9bbe61c3ef7d8ff306c.tar.gz tizen-distro-2d3cf8030dfd83ec0e85d9bbe61c3ef7d8ff306c.tar.bz2 tizen-distro-2d3cf8030dfd83ec0e85d9bbe61c3ef7d8ff306c.zip |
meta-tizen: Update README.md
Information in the README.md file are outdated, remove them and add a
link to the Tizen build with Yocto wiki pages which are up to date.
Change-Id: I1ce7da181ee2fa3968cf2dc6a4e0f9567d55cd50
(From meta-tizen rev: 422bfd590df24e03b37d0d1cfaca8af42d1923e1)
Signed-off-by: Kévin THIERRY <kevin.thierry@open.eurogiciel.org>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
-rw-r--r-- | meta-tizen/README.md | 119 |
1 files changed, 2 insertions, 117 deletions
diff --git a/meta-tizen/README.md b/meta-tizen/README.md index f8bf8035e6..2f03a8d9d8 100644 --- a/meta-tizen/README.md +++ b/meta-tizen/README.md @@ -1,118 +1,3 @@ -Create a Tizen Common x86_64 image with Yocto -============================================= +General documentation regarding Tizen build with Yocto: https://wiki.tizen.org/wiki/Tizen_on_yocto +Detailed information about how to build your own Tizen image with Yocto: https://wiki.tizen.org/wiki/Build_Tizen_with_Yocto -Target: Haswell/Ivy CPU - -# Create your working directory - -Create a working directory (for example "${HOME}/yocto","/mnt/ssd","/tmp"): - - WORKINGDIR=${HOME}/yocto - mkdir -p ${WORKINGDIR} - cd ${WORKINGDIR} - -Create a download directory (optional). It will act as a common download -directory amongst projects: - - mkdir -p ${WORKINGDIR}/downloads - -# Download sources - -Downlaod Poky (tmp fork, poky is patched version for rpm 4 support): - - git clone git@github.com:eurogiciel-oss/poky.git - -Download Intel layers: - - git clone git://git.yoctoproject.org/meta-intel - -Download openembedded layers: - - git clone git://git.openembedded.org/meta-openembedded - -Download tizen layer: - - git clone ssh://${YOURID}@review.tizen.org:29418/scm/bb/meta-tizen - -# Configuration - -Configure the environment: - - BUILDID="alice" - cd ${WORKINGDIR}/poky - source ./oe-init-build-env build-${BUILDID} - -# Configuration files - -## conf/bblayer.conf - -This file contains the list of the layers in which poky has to search -for the recipes. - - BBPATH = "${TOPDIR}" - BBFILES ?= "" - - WORKINGDIR="${HOME}/yocto" - - BBLAYERS ?= " \ - ${WORKINGDIR}/poky/meta \ - ${WORKINGDIR}/poky/meta-yocto \ - ${WORKINGDIR}/poky/meta-yocto-bsp \ - ${WORKINGDIR}/meta-intel \ - ${WORKINGDIR}/meta-openembedded/meta-efl \ - ${WORKINGDIR}/meta-openembedded/meta-oe \ - ${WORKINGDIR}/meta-openembedded/meta-multimedia \ - ${WORKINGDIR}/meta-openembedded/meta-ruby \ - ${WORKINGDIR}/meta-openembedded/meta-systemd \ - ${WORKINGDIR}/meta-tizen \ - " - #For Arch haswell - #BBLAYERS_append = "${WORKINGDIR}/meta-intel/meta-isg/meta-haswell-wc " - #For Arch Ivy - BBLAYERS_append = "${WORKINGDIR}/meta-intel/meta-romley " - -## conf/local.conf - -Most of default values can be kept. The one that needs to be changed is: - - #For qemu - MACHINE ?= "qemux86-64" - #For haswell - MACHINE ?= "haswell-wc" - #For Ivy - MACHINE ?= "romley-ivb" - -Other useful option to set: - -Download directory: - - DL_DIR ?= "${WORKINGDIR}/downloads" - -Setting the download directory DL_DIR to a directory shared amongst -projects prevents common data from being downloaded for each project. - -Terminal emulator: - - OE_TERMINAL = "screen" - -The terminal emulator you want to use. - -# WARNING' tmp add to /etc/sudoers 'WARNING -1: - - sudoedit /etc/sudoers - alice ALL=(ALL) NOPASSWD: ALL - -2: - - bitbake tar-replacement-native - -# Build the Tizen Common image - - bitbake -kv tizen-common-core-image-minimal-dev - -The generated image can be found in tmp/deploy/images/${MACHINE} - -If you made a qemu image you can run it with: - - runqemu qemux86-64 tizen-common-core-image-minimal-dev |