summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@digia.com>2014-02-11 10:18:30 +0200
committerSamuli Piippo <samuli.piippo@digia.com>2014-02-12 09:34:52 +0200
commitd0f0c374e07f0d748f3ad20b8350863394ae8283 (patch)
tree8b8a3c62c94e66b220314565295c240b4ebe550f
parent1d951aca19b0c65c79ee6239a95d28dbf467198a (diff)
downloadmeta-boot2qt-d0f0c374e07f0d748f3ad20b8350863394ae8283.tar.gz
Changes to init script
- Move to root folder - meta-ti and meta-raspberrypi now have dora branch Change-Id: I1b88ead9c44b67243d9c69fd6a5a8a59c8232b97 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
-rwxr-xr-xb2qt-init-build-env (renamed from scripts/b2qt-init-build-env)12
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/b2qt-init-build-env b/b2qt-init-build-env
index 43229e1..8c4da01 100755
--- a/scripts/b2qt-init-build-env
+++ b/b2qt-init-build-env
@@ -30,7 +30,7 @@ fi
30 30
31mkdir -p ${1} 31mkdir -p ${1}
32 32
33DIR=$(readlink -f $(dirname $0)/..) 33DIR=$(readlink -f $(dirname $0))
34BUILDDIR=$(readlink -f $1) 34BUILDDIR=$(readlink -f $1)
35 35
36if [ ! -d ${BUILDDIR}/poky ]; then 36if [ ! -d ${BUILDDIR}/poky ]; then
@@ -42,7 +42,7 @@ if [ ! -d ${BUILDDIR}/poky/meta-openembedded ]; then
42fi 42fi
43 43
44if [ ! -d ${BUILDDIR}/poky/meta-ti ]; then 44if [ ! -d ${BUILDDIR}/poky/meta-ti ]; then
45 git clone git://git.yoctoproject.org/meta-ti ${BUILDDIR}/poky/meta-ti -b master 45 git clone git://git.yoctoproject.org/meta-ti ${BUILDDIR}/poky/meta-ti -b dora
46fi 46fi
47 47
48if [ ! -d ${BUILDDIR}/poky/meta-fsl-arm ]; then 48if [ ! -d ${BUILDDIR}/poky/meta-fsl-arm ]; then
@@ -54,7 +54,7 @@ if [ ! -d ${BUILDDIR}/poky/meta-fsl-arm-extra ]; then
54fi 54fi
55 55
56if [ ! -d ${BUILDDIR}/poky/meta-raspberrypi ]; then 56if [ ! -d ${BUILDDIR}/poky/meta-raspberrypi ]; then
57 git clone git://git.yoctoproject.org/meta-raspberrypi ${BUILDDIR}/poky/meta-raspberrypi -b master 57 git clone git://git.yoctoproject.org/meta-raspberrypi ${BUILDDIR}/poky/meta-raspberrypi -b dora
58fi 58fi
59 59
60if [ ! -d ${BUILDDIR}/poky/meta-b2qt ]; then 60if [ ! -d ${BUILDDIR}/poky/meta-b2qt ]; then
@@ -65,10 +65,10 @@ echo
65echo "Yocto build system is ready" 65echo "Yocto build system is ready"
66echo "next initialize the build env for your target machine, for example:" 66echo "next initialize the build env for your target machine, for example:"
67echo 67echo
68echo "cd ${BUILDDIR}/poky" 68echo "cd ${BUILDDIR}"
69echo "export TEMPLATECONF=${DIR}/conf" 69echo "export TEMPLATECONF=meta-b2qt/conf"
70echo "export MACHINE=raspberrypi" 70echo "export MACHINE=raspberrypi"
71echo ". ./oe-init-build-env" 71echo ". ./poky/oe-init-build-env build-raspberrypi"
72echo 72echo
73echo "and build B2Qt image with:" 73echo "and build B2Qt image with:"
74echo 74echo