diff options
author | Teemu Holappa <teemu.holappa@theqtcompany.com> | 2015-11-27 12:35:49 +0200 |
---|---|---|
committer | Samuli Piippo <samuli.piippo@theqtcompany.com> | 2015-12-14 15:06:53 +0000 |
commit | 0d752a4b59a72f3cc95390083e1c606962b42411 (patch) | |
tree | a9d04c6f5acde61a3f29d78fa61f38b66061ba9d /conf | |
parent | ed793d57679af4065a4326946ce42415fd9484e1 (diff) | |
download | meta-boot2qt-0d752a4b59a72f3cc95390083e1c606962b42411.tar.gz |
Added support for Jetson-tk1-pro device.
The configuration has dependency to the interal repositories (meta-tegra and jetson-tk1-pro).
Change-Id: I5e13377cf8cfbe4fad3f19215a292b49195f1546
Reviewed-by: Samuli Piippo <samuli.piippo@theqtcompany.com>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/bblayers.conf.nvidia-logan.sample | 48 | ||||
-rw-r--r-- | conf/distro/include/nvidia-logan.conf | 39 |
2 files changed, 87 insertions, 0 deletions
diff --git a/conf/bblayers.conf.nvidia-logan.sample b/conf/bblayers.conf.nvidia-logan.sample new file mode 100644 index 0000000..1df641c --- /dev/null +++ b/conf/bblayers.conf.nvidia-logan.sample | |||
@@ -0,0 +1,48 @@ | |||
1 | ############################################################################# | ||
2 | ## | ||
3 | ## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). | ||
4 | ## | ||
5 | ## This file is part of the Qt Enterprise Embedded Scripts of the Qt | ||
6 | ## framework. | ||
7 | ## | ||
8 | ## $QT_BEGIN_LICENSE$ | ||
9 | ## Commercial License Usage Only | ||
10 | ## Licensees holding valid commercial Qt license agreements with Digia | ||
11 | ## with an appropriate addendum covering the Qt Enterprise Embedded Scripts, | ||
12 | ## may use this file in accordance with the terms contained in said license | ||
13 | ## agreement. | ||
14 | ## | ||
15 | ## For further information use the contact form at | ||
16 | ## http://www.qt.io/contact-us. | ||
17 | ## | ||
18 | ## | ||
19 | ## $QT_END_LICENSE$ | ||
20 | ## | ||
21 | ############################################################################# | ||
22 | |||
23 | # LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf | ||
24 | # changes incompatibly | ||
25 | LCONF_VERSION = "6" | ||
26 | |||
27 | BBPATH = "${TOPDIR}" | ||
28 | BBFILES ?= "" | ||
29 | BSPDIR := "${@os.path.abspath(os.path.dirname(d.getVar('FILE', True)) + '/../..')}" | ||
30 | |||
31 | BBLAYERS ?= " \ | ||
32 | ${BSPDIR}/sources/poky/meta \ | ||
33 | ${BSPDIR}/sources/poky/meta-yocto \ | ||
34 | ${BSPDIR}/sources/meta-tegra \ | ||
35 | ${BSPDIR}/sources/meta-openembedded/meta-oe \ | ||
36 | ${BSPDIR}/sources/meta-openembedded/meta-python \ | ||
37 | ${BSPDIR}/sources/meta-openembedded/meta-networking \ | ||
38 | ${BSPDIR}/sources/meta-openembedded/meta-initramfs \ | ||
39 | ${BSPDIR}/sources/meta-qt5 \ | ||
40 | ${BSPDIR}/sources/meta-openembedded/meta-ruby \ | ||
41 | ${BSPDIR}/sources/meta-b2qt \ | ||
42 | ${BSPDIR}/sources/meta-b2qt/meta-nvidia-logan-extras \ | ||
43 | " | ||
44 | |||
45 | BBLAYERS_NON_REMOVABLE ?= " \ | ||
46 | ${BSPDIR}/sources/poky/meta \ | ||
47 | ${BSPDIR}/sources/poky/meta-yocto \ | ||
48 | " | ||
diff --git a/conf/distro/include/nvidia-logan.conf b/conf/distro/include/nvidia-logan.conf new file mode 100644 index 0000000..c39d757 --- /dev/null +++ b/conf/distro/include/nvidia-logan.conf | |||
@@ -0,0 +1,39 @@ | |||
1 | ############################################################################# | ||
2 | ## | ||
3 | ## Copyright (C) 2015 Digia Plc and/or its subsidiary(-ies). | ||
4 | ## | ||
5 | ## This file is part of the Qt Enterprise Embedded Scripts of the Qt | ||
6 | ## framework. | ||
7 | ## | ||
8 | ## $QT_BEGIN_LICENSE$ | ||
9 | ## Commercial License Usage Only | ||
10 | ## Licensees holding valid commercial Qt license agreements with Digia | ||
11 | ## with an appropriate addendum covering the Qt Enterprise Embedded Scripts, | ||
12 | ## may use this file in accordance with the terms contained in said license | ||
13 | ## agreement. | ||
14 | ## | ||
15 | ## For further information use the contact form at | ||
16 | ## http://www.qt.io/contact-us. | ||
17 | ## | ||
18 | ## | ||
19 | ## $QT_END_LICENSE$ | ||
20 | ## | ||
21 | ############################################################################# | ||
22 | |||
23 | DISTRO_FEATURES_remove += "wayland" | ||
24 | |||
25 | MACHINE_EXTRA_INSTALL = "\ | ||
26 | libegl \ | ||
27 | libgles2 \ | ||
28 | tegra-firmware-gk20a \ | ||
29 | graphics-fw \ | ||
30 | libdrm-nv \ | ||
31 | " | ||
32 | |||
33 | MACHINE_EXTRA_INSTALL_SDK = "\ | ||
34 | libegl-dev \ | ||
35 | libgles2-dev \ | ||
36 | graphics-headers-dev \ | ||
37 | libdrm-nv-dev \ | ||
38 | " | ||
39 | |||