diff options
author | Samuli Piippo <samuli.piippo@digia.com> | 2014-02-05 10:19:14 +0200 |
---|---|---|
committer | Samuli Piippo <samuli.piippo@digia.com> | 2014-02-07 12:58:29 +0200 |
commit | 1d951aca19b0c65c79ee6239a95d28dbf467198a (patch) | |
tree | 6eb020190d90cf2388d05a1698cbb693faa08618 | |
parent | 65f7102c2fd3b2f8299809577a885b6860303f97 (diff) | |
download | meta-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>
-rwxr-xr-x | scripts/b2qt-init-build-env | 76 |
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 | |||
24 | set -e | ||
25 | |||
26 | if [ $# -ne 1 ]; then | ||
27 | echo "Usage: $0 <yocto build directory>" | ||
28 | exit 1 | ||
29 | fi | ||
30 | |||
31 | mkdir -p ${1} | ||
32 | |||
33 | DIR=$(readlink -f $(dirname $0)/..) | ||
34 | BUILDDIR=$(readlink -f $1) | ||
35 | |||
36 | if [ ! -d ${BUILDDIR}/poky ]; then | ||
37 | git clone git://git.yoctoproject.org/poky ${BUILDDIR}/poky -b dora | ||
38 | fi | ||
39 | |||
40 | if [ ! -d ${BUILDDIR}/poky/meta-openembedded ]; then | ||
41 | git clone git://git.openembedded.org/meta-openembedded ${BUILDDIR}/poky/meta-openembedded -b dora | ||
42 | fi | ||
43 | |||
44 | if [ ! -d ${BUILDDIR}/poky/meta-ti ]; then | ||
45 | git clone git://git.yoctoproject.org/meta-ti ${BUILDDIR}/poky/meta-ti -b master | ||
46 | fi | ||
47 | |||
48 | if [ ! -d ${BUILDDIR}/poky/meta-fsl-arm ]; then | ||
49 | git clone git://git.yoctoproject.org/meta-fsl-arm ${BUILDDIR}/poky/meta-fsl-arm -b dora | ||
50 | fi | ||
51 | |||
52 | if [ ! -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 | ||
54 | fi | ||
55 | |||
56 | if [ ! -d ${BUILDDIR}/poky/meta-raspberrypi ]; then | ||
57 | git clone git://git.yoctoproject.org/meta-raspberrypi ${BUILDDIR}/poky/meta-raspberrypi -b master | ||
58 | fi | ||
59 | |||
60 | if [ ! -d ${BUILDDIR}/poky/meta-b2qt ]; then | ||
61 | ln -s ${DIR} ${BUILDDIR}/poky/meta-b2qt | ||
62 | fi | ||
63 | |||
64 | echo | ||
65 | echo "Yocto build system is ready" | ||
66 | echo "next initialize the build env for your target machine, for example:" | ||
67 | echo | ||
68 | echo "cd ${BUILDDIR}/poky" | ||
69 | echo "export TEMPLATECONF=${DIR}/conf" | ||
70 | echo "export MACHINE=raspberrypi" | ||
71 | echo ". ./oe-init-build-env" | ||
72 | echo | ||
73 | echo "and build B2Qt image with:" | ||
74 | echo | ||
75 | echo "bitbake b2qt-embedded-image" | ||
76 | echo | ||