summaryrefslogtreecommitdiffstats
path: root/meta-agl-bsp/meta-ti
diff options
context:
space:
mode:
authorPaul Barker <paul@betafive.co.uk>2019-02-18 10:59:09 +0000
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2019-03-05 02:11:30 +0000
commit5efcb59476f8b8ced8452126d0016ee32bbe1c82 (patch)
treed5df8cd8889ce0730380c6fe57c045944c8257a3 /meta-agl-bsp/meta-ti
parente8f726969e6e7372c36f602c2250c8768132e7dd (diff)
meta-agl-bsp: meta-ti: weston-ini-conf: Apply only to dra7xx-evm
The git history shows that the weston-ini-conf changes in meta-agl-bsp/meta-ti were added to support the dra7xx-evm. These changes should not be applied for other machines which use the meta-ti layer such as the beaglebone and bbe. Change-Id: Id777d751be033e6671ebf387977ec7f5be0e5514 Signed-off-by: Paul Barker <paul@betafive.co.uk> (cherry picked from commit 78fe3e0999b3f9a124c1dd8e0157002d0af55cee)
Diffstat (limited to 'meta-agl-bsp/meta-ti')
-rw-r--r--meta-agl-bsp/meta-ti/recipes-graphics/wayland/weston-ini-conf.bbappend4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-agl-bsp/meta-ti/recipes-graphics/wayland/weston-ini-conf.bbappend b/meta-agl-bsp/meta-ti/recipes-graphics/wayland/weston-ini-conf.bbappend
index 914a87309..684031eae 100644
--- a/meta-agl-bsp/meta-ti/recipes-graphics/wayland/weston-ini-conf.bbappend
+++ b/meta-agl-bsp/meta-ti/recipes-graphics/wayland/weston-ini-conf.bbappend
@@ -2,6 +2,6 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
# While we could have a panel attached to HDMI, we only use the default
# panel isntead.
-SRC_URI_remove = "file://hdmi-a-1-270.cfg"
+SRC_URI_remove_dra7xx-evm = "file://hdmi-a-1-270.cfg"
# Our DPI panel shows up as "UNNAMED-1"
-SRC_URI += "file://unnamed.cfg"
+SRC_URI_append_dra7xx-evm = " file://unnamed.cfg"
XDS_AGENT_BASEURL" ] && XDS_AGENT_BASEURL="http://iot.bzh/download/public/2017/XDS/xds-agent/" [ -z "$DEST_DIR" ] && DEST_DIR=./webapp/dist/assets/xds-agent-tarballs TARBALLS=$(curl -s ${XDS_AGENT_BASEURL} | grep -oP 'href="[^"]*.zip"' | cut -d '"' -f 2) usage() { echo "Usage: $(basename $0) [-h|--help] [-noclean] [-a|--arch <arch name>] [-l|--list]" exit 1 } do_cleanup=true while [ $# -ne 0 ]; do case $1 in -h|--help|"") usage ;; -l|--list) echo "Available xds-agent tarballs:" for t in $TARBALLS; do echo " $t"; done exit 0 ;; -noclean) do_cleanup=false ;; *) echo "Invalid argument: $1" usage ;; esac shift done if [ ! -d ${DEST_DIR} ]; then echo "Invalid destination directory: ${DEST_DIR}" exit 1 fi # Get not existing tarballs exitCode=0 for file in $TARBALLS; do DESTFILE=${DEST_DIR}/${file} if [ ! -f $DESTFILE ]; then echo -n " Downloading ${file}... " wget -q "${XDS_AGENT_BASEURL}/${file}" -O ${DESTFILE} if [ "$?" != 0 ]; then echo "ERROR" exitCode=1 fi echo "OK" fi done exit $exitCode