summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2017-01-31 08:20:16 +0200
committerSamuli Piippo <samuli.piippo@qt.io>2017-02-15 08:32:11 +0000
commit4d4427e3e76d64021d56e15e1c30185b8f07e6fc (patch)
tree06eec0cda1e05a4be48f14a8953f9bfc0e91d293 /scripts
parent505d8414e11d4da9d8fc485931f2af6fdfd5912f (diff)
downloadmeta-boot2qt-4d4427e3e76d64021d56e15e1c30185b8f07e6fc.tar.gz
Support for NVIDIA Jetson TX1
Change-Id: Ic84d78d201c48aff296715fa6ce0a7ea5e5921c3 Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/manifest.xml6
-rwxr-xr-xscripts/setup-environment.sh3
2 files changed, 9 insertions, 0 deletions
diff --git a/scripts/manifest.xml b/scripts/manifest.xml
index 4d82e47..1d99d3c 100644
--- a/scripts/manifest.xml
+++ b/scripts/manifest.xml
@@ -11,6 +11,7 @@
11 <remote fetch="ssh://codereview.qt-project.org/yocto" name="gerrit"/> 11 <remote fetch="ssh://codereview.qt-project.org/yocto" name="gerrit"/>
12 <remote fetch="git://git.yoctoproject.org" name="intel"/> 12 <remote fetch="git://git.yoctoproject.org" name="intel"/>
13 <remote fetch="git://github.com/openembedded" name="oe-mirror"/> 13 <remote fetch="git://github.com/openembedded" name="oe-mirror"/>
14 <remote fetch="git://github.com/madisongh" name="madisongh"/>
14 <remote fetch="ssh://git@git.qt.io/boot2qt" name="playground"/> 15 <remote fetch="ssh://git@git.qt.io/boot2qt" name="playground"/>
15 16
16 <project name="poky" 17 <project name="poky"
@@ -60,6 +61,11 @@
60 revision="d20e5bffb582c6bfabdadc22e903df86c8cfd66b" 61 revision="d20e5bffb582c6bfabdadc22e903df86c8cfd66b"
61 path="sources/meta-renesas" 62 path="sources/meta-renesas"
62 groups="notdefault,external,renesas"/> 63 groups="notdefault,external,renesas"/>
64 <project name="meta-tegra"
65 remote="madisongh"
66 revision="9f5ffd3f8320ec3379e63e75e7c47328920751d5"
67 path="sources/meta-tegra"
68 groups="notdefault,external,jetson"/>
63 69
64 <project name="nvidia-layer" 70 <project name="nvidia-layer"
65 remote="playground" 71 remote="playground"
diff --git a/scripts/setup-environment.sh b/scripts/setup-environment.sh
index 2f8264b..d9a6713 100755
--- a/scripts/setup-environment.sh
+++ b/scripts/setup-environment.sh
@@ -83,6 +83,9 @@ if [ ! -f ${PWD}/${BUILDDIRECTORY}/conf/bblayers.conf ]; then
83 emulator) 83 emulator)
84 LAYERSCONF="bblayers.conf.emulator.sample" 84 LAYERSCONF="bblayers.conf.emulator.sample"
85 ;; 85 ;;
86 jetson-tx1|jetson-tk1)
87 LAYERSCONF="bblayers.conf.jetson.sample"
88 ;;
86 *) 89 *)
87 LAYERSCONF="bblayers.conf.sample" 90 LAYERSCONF="bblayers.conf.sample"
88 echo "Unknown MACHINE, bblayers.conf might need manual editing" 91 echo "Unknown MACHINE, bblayers.conf might need manual editing"