summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@digia.com>2014-02-05 10:19:14 +0200
committerSamuli Piippo <samuli.piippo@digia.com>2014-02-07 12:58:29 +0200
commit1d951aca19b0c65c79ee6239a95d28dbf467198a (patch)
tree6eb020190d90cf2388d05a1698cbb693faa08618 /scripts
parent65f7102c2fd3b2f8299809577a885b6860303f97 (diff)
downloadmeta-boot2qt-1d951aca19b0c65c79ee6239a95d28dbf467198a.tar.gz
Add script to initialize yocto build env
Clone all necessary repos and symlink meta-b2qt in correct place. Change-Id: I09c21e0bb07d67901b4456194e365f93541b5842 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/b2qt-init-build-env76
1 files changed, 76 insertions, 0 deletions
diff --git a/scripts/b2qt-init-build-env b/scripts/b2qt-init-build-env
new file mode 100755
index 0000000..43229e1
--- /dev/null
+++ b/scripts/b2qt-init-build-env
@@ -0,0 +1,76 @@
1#!/bin/sh
2#############################################################################
3##
4## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
5##
6## This file is part of the Qt Enterprise Embedded Scripts of the Qt
7## framework.
8##
9## $QT_BEGIN_LICENSE$
10## Commercial License Usage Only
11## Licensees holding valid commercial Qt license agreements with Digia
12## with an appropriate addendum covering the Qt Enterprise Embedded Scripts,
13## may use this file in accordance with the terms contained in said license
14## agreement.
15##
16## For further information use the contact form at
17## http://qt.digia.com/contact-us.
18##
19##
20## $QT_END_LICENSE$
21##
22#############################################################################
23
24set -e
25
26if [ $# -ne 1 ]; then
27 echo "Usage: $0 <yocto build directory>"
28 exit 1
29fi
30
31mkdir -p ${1}
32
33DIR=$(readlink -f $(dirname $0)/..)
34BUILDDIR=$(readlink -f $1)
35
36if [ ! -d ${BUILDDIR}/poky ]; then
37 git clone git://git.yoctoproject.org/poky ${BUILDDIR}/poky -b dora
38fi
39
40if [ ! -d ${BUILDDIR}/poky/meta-openembedded ]; then
41 git clone git://git.openembedded.org/meta-openembedded ${BUILDDIR}/poky/meta-openembedded -b dora
42fi
43
44if [ ! -d ${BUILDDIR}/poky/meta-ti ]; then
45 git clone git://git.yoctoproject.org/meta-ti ${BUILDDIR}/poky/meta-ti -b master
46fi
47
48if [ ! -d ${BUILDDIR}/poky/meta-fsl-arm ]; then
49 git clone git://git.yoctoproject.org/meta-fsl-arm ${BUILDDIR}/poky/meta-fsl-arm -b dora
50fi
51
52if [ ! -d ${BUILDDIR}/poky/meta-fsl-arm-extra ]; then
53 git clone git://github.com/Freescale/meta-fsl-arm-extra.git ${BUILDDIR}/poky/meta-fsl-arm-extra -b dora
54fi
55
56if [ ! -d ${BUILDDIR}/poky/meta-raspberrypi ]; then
57 git clone git://git.yoctoproject.org/meta-raspberrypi ${BUILDDIR}/poky/meta-raspberrypi -b master
58fi
59
60if [ ! -d ${BUILDDIR}/poky/meta-b2qt ]; then
61 ln -s ${DIR} ${BUILDDIR}/poky/meta-b2qt
62fi
63
64echo
65echo "Yocto build system is ready"
66echo "next initialize the build env for your target machine, for example:"
67echo
68echo "cd ${BUILDDIR}/poky"
69echo "export TEMPLATECONF=${DIR}/conf"
70echo "export MACHINE=raspberrypi"
71echo ". ./oe-init-build-env"
72echo
73echo "and build B2Qt image with:"
74echo
75echo "bitbake b2qt-embedded-image"
76echo