diff options
author | Stephane Desneux <stephane.desneux@iot.bzh> | 2018-06-19 14:37:23 +0900 |
---|---|---|
committer | Stéphane Desneux <stephane.desneux@iot.bzh> | 2018-06-28 19:12:38 +0000 |
commit | b6c5e9e4b360c334212e5f3c8a0fb33cfb295f87 (patch) | |
tree | 1384cfff3ee44613031793dbd02f4849ae29f0d1 | |
parent | b4d34cde29a7e5a2f39749c2244b404f675823b0 (diff) |
mixer app: bump to latest revision when 4A is enabled
This patch does 2 things:
* pin version eel_5.0.3 when 4A is not enabled
* use AGL_APP_REVISION when 4A is enabled
In the second case, this will pop the following changes
in mixer:
* 62bb1f0 WIP version based on 4a High Level API
* 2aabd6a Add some ignore in .gitignore
* d192c51 Make use of afb-helpers submodule
* e1fe0c6 Add special permission to the mixer
* 21994ea Remove nasty hack to handle HALs
* f35abba make of use of app templates to import right HALs depending on compilation options
* 6bf2ccb make use of alsacore and hal bindings to control audio volume
Change-Id: I5408100aacacb14fe581cf89535bf9b66de0189f
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
-rw-r--r-- | recipes-demo-hmi/mixer/mixer_git.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes-demo-hmi/mixer/mixer_git.bb b/recipes-demo-hmi/mixer/mixer_git.bb index bdbc8db64..ea335990e 100644 --- a/recipes-demo-hmi/mixer/mixer_git.bb +++ b/recipes-demo-hmi/mixer/mixer_git.bb @@ -7,7 +7,11 @@ LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=ae6497158920d9524cf208c09cc4c984" SRC_URI = "git://gerrit.automotivelinux.org/gerrit/apps/mixer;protocol=https;branch=${AGL_BRANCH}" -SRCREV = "${AGL_APP_REVISION}" + +# 'legacy' version (eel_5.0.3) when 4A is not enabled +SRCREV = "eel_5.0.3" +# 4A-aware mixer +SRVREV_agl-audio-4a-framework = "${AGL_APP_REVISION}" PV = "1.0+git${SRCPV}" S = "${WORKDIR}/git" |