Update README.md
authorKévin THIERRY <kevin.thierry@open.eurogiciel.org>
Wed, 8 Oct 2014 07:24:57 +0000 (09:24 +0200)
committerKévin THIERRY <kevin.thierry@open.eurogiciel.org>
Thu, 16 Oct 2014 08:47:44 +0000 (10:47 +0200)
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
Signed-off-by: Kévin THIERRY <kevin.thierry@open.eurogiciel.org>
README.md

index f8bf803..2f03a8d 100644 (file)
--- a/README.md
+++ b/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