summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorLouai Al-Khanji <louai.al-khanji@theqtcompany.com>2016-03-14 16:53:56 -0700
committerLouai Al-Khanji <louai.al-khanji@qt.io>2016-05-10 15:26:17 +0000
commita42496a9498739cb7362d11dd7c22d08b39ccbb9 (patch)
treeb6a6e84fcc9c69f81689979a043234ff748bab8d /scripts
parent4a0beee17a7b3be144771363920419604f1facec (diff)
downloadmeta-boot2qt-a42496a9498739cb7362d11dd7c22d08b39ccbb9.tar.gz
Add Support for Renesas R-Car Gen2 Devices
I have only personally tested the porter build as it's the only device I have, but getting the others to work as well should be straight forward. Please see the note in conf/distro/include/rcar-gen2.inc about the binary drivers. The documentation we ship with Qt Creator should expand on how to install the drivers. Additionally we must check with Renesas how we could redistribute prebuilt images if we want to do that. Change-Id: I82e03aad9b43bee068aaa0472aeac4d394f049a8 Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/manifest.xml5
-rw-r--r--scripts/manifest_jethro.xml5
-rwxr-xr-xscripts/setup-environment.sh3
3 files changed, 13 insertions, 0 deletions
diff --git a/scripts/manifest.xml b/scripts/manifest.xml
index 4c1e70f..ff00513 100644
--- a/scripts/manifest.xml
+++ b/scripts/manifest.xml
@@ -72,6 +72,11 @@
72 revision="4e87c59bdedaa8c3e44fc02fd23be726c4d1dfb9" 72 revision="4e87c59bdedaa8c3e44fc02fd23be726c4d1dfb9"
73 path="sources/meta-intel" 73 path="sources/meta-intel"
74 groups="notdefault,external,intel"/> 74 groups="notdefault,external,intel"/>
75 <project name="meta-renesas"
76 remote="yocto"
77 revision="b7843bd6a2835e5199cab9ba196c5e67b15acaed"
78 path="sources/meta-renesas"
79 groups="notdefault,external,renesas"/>
75 80
76 <project name="nvidia-layer" 81 <project name="nvidia-layer"
77 remote="playground" 82 remote="playground"
diff --git a/scripts/manifest_jethro.xml b/scripts/manifest_jethro.xml
index 6044ae5..c94de13 100644
--- a/scripts/manifest_jethro.xml
+++ b/scripts/manifest_jethro.xml
@@ -72,6 +72,11 @@
72 revision="jethro" 72 revision="jethro"
73 path="sources/meta-intel" 73 path="sources/meta-intel"
74 groups="notdefault,external,intel"/> 74 groups="notdefault,external,intel"/>
75 <project name="meta-renesas"
76 remote="yocto"
77 revision="master"
78 path="sources/meta-renesas"
79 groups="notdefault,external,renesas"/>
75 80
76 <project name="nvidia-layer" 81 <project name="nvidia-layer"
77 remote="playground" 82 remote="playground"
diff --git a/scripts/setup-environment.sh b/scripts/setup-environment.sh
index 1fb4d89..0f13a59 100755
--- a/scripts/setup-environment.sh
+++ b/scripts/setup-environment.sh
@@ -78,6 +78,9 @@ if [ ! -f ${PWD}/${BUILDDIRECTORY}/conf/bblayers.conf ]; then
78 tegra-x1|tegra-t18x) 78 tegra-x1|tegra-t18x)
79 LAYERSCONF="bblayers.conf.nvidia-tegra.sample" 79 LAYERSCONF="bblayers.conf.nvidia-tegra.sample"
80 ;; 80 ;;
81 alt|gose|koelsch|lager|porter|silk|stout)
82 LAYERSCONF="bblayers.conf.rcar-gen2.sample"
83 ;;
81 emulator) 84 emulator)
82 LAYERSCONF="bblayers.conf.emulator.sample" 85 LAYERSCONF="bblayers.conf.emulator.sample"
83 ;; 86 ;;