summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorTeemu Holappa <teemu.holappa@theqtcompany.com>2015-11-27 12:35:49 +0200
committerSamuli Piippo <samuli.piippo@theqtcompany.com>2015-12-14 15:06:53 +0000
commit0d752a4b59a72f3cc95390083e1c606962b42411 (patch)
treea9d04c6f5acde61a3f29d78fa61f38b66061ba9d /scripts
parented793d57679af4065a4326946ce42415fd9484e1 (diff)
downloadmeta-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 'scripts')
-rw-r--r--scripts/manifest.xml11
-rw-r--r--scripts/manifest_fido.xml11
-rwxr-xr-xscripts/setup-environment.sh3
3 files changed, 25 insertions, 0 deletions
diff --git a/scripts/manifest.xml b/scripts/manifest.xml
index 927a2f3..e7b1c52 100644
--- a/scripts/manifest.xml
+++ b/scripts/manifest.xml
@@ -12,6 +12,7 @@
12 <remote fetch="git://github.com/meta-qt5" name="meta-qt5"/> 12 <remote fetch="git://github.com/meta-qt5" name="meta-qt5"/>
13 <remote fetch="git://git.yoctoproject.org" name="intel"/> 13 <remote fetch="git://git.yoctoproject.org" name="intel"/>
14 <remote fetch="git://github.com/openembedded" name="oe-mirror"/> 14 <remote fetch="git://github.com/openembedded" name="oe-mirror"/>
15 <remote fetch="git://playground.ci.local" name="playground"/>
15 16
16 <project name="poky" 17 <project name="poky"
17 remote="yocto" 18 remote="yocto"
@@ -66,6 +67,16 @@
66 revision="ead0a5c115e632015d8358f4f304ec8908732f5f" 67 revision="ead0a5c115e632015d8358f4f304ec8908732f5f"
67 path="sources/meta-intel" 68 path="sources/meta-intel"
68 groups="notdefault,nuc"/> 69 groups="notdefault,nuc"/>
70 <project name="meta-tegra"
71 remote="playground"
72 revision="96fc69180aa359065d2d587ba0fca671d9e5a89b"
73 path="sources/meta-tegra"
74 groups="notdefault,nvidia-logan"/>
75 <project name="jetson-tk1-pro"
76 remote="playground"
77 revision="a376c795d5361fda4ea5f19feecc23ab7e753646"
78 path="sources/jetson-tk1-pro"
79 groups="notdefault,nvidia-logan"/>
69 80
70</manifest> 81</manifest>
71 82
diff --git a/scripts/manifest_fido.xml b/scripts/manifest_fido.xml
index 2a1c78e..e633e35 100644
--- a/scripts/manifest_fido.xml
+++ b/scripts/manifest_fido.xml
@@ -12,6 +12,7 @@
12 <remote fetch="git://github.com/meta-qt5" name="meta-qt5"/> 12 <remote fetch="git://github.com/meta-qt5" name="meta-qt5"/>
13 <remote fetch="git://git.yoctoproject.org" name="intel"/> 13 <remote fetch="git://git.yoctoproject.org" name="intel"/>
14 <remote fetch="git://github.com/openembedded" name="oe-mirror"/> 14 <remote fetch="git://github.com/openembedded" name="oe-mirror"/>
15 <remote fetch="git://git://playground.ci.local" name="playground"/>
15 16
16 <project name="poky" 17 <project name="poky"
17 remote="yocto" 18 remote="yocto"
@@ -66,6 +67,16 @@
66 revision="fido" 67 revision="fido"
67 path="sources/meta-intel" 68 path="sources/meta-intel"
68 groups="notdefault,nuc"/> 69 groups="notdefault,nuc"/>
70 <project name="meta-tegra"
71 remote="playground"
72 revision="master"
73 path="sources/meta-tegra"
74 groups="notdefault,nvidia-logan"/>
75 <project name="jetson-tk1-pro"
76 remote="playground"
77 revision="master"
78 path="sources/jetson-tk1-pro"
79 groups="notdefault,nvidia-logan"/>
69 80
70</manifest> 81</manifest>
71 82
diff --git a/scripts/setup-environment.sh b/scripts/setup-environment.sh
index da7ec69..0736d0d 100755
--- a/scripts/setup-environment.sh
+++ b/scripts/setup-environment.sh
@@ -70,6 +70,9 @@ if [ ! -f ${PWD}/${BUILDDIRECTORY}/conf/bblayers.conf ]; then
70 nuc) 70 nuc)
71 LAYERSCONF="bblayers.conf.nuc.sample" 71 LAYERSCONF="bblayers.conf.nuc.sample"
72 ;; 72 ;;
73 nvidia-logan)
74 LAYERSCONF="bblayers.conf.nvidia-logan.sample"
75 ;;
73 emulator) 76 emulator)
74 LAYERSCONF="bblayers.conf.emulator.sample" 77 LAYERSCONF="bblayers.conf.emulator.sample"
75 ;; 78 ;;