diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2017-07-24 23:12:10 +0200 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2017-07-24 23:12:19 +0200 |
commit | a3626b5a736cc41c91813db6aad9c8e610843f89 (patch) | |
tree | 43c0d3bdd19e69529450f7645c7fb414d2f37ed2 /recipes-appfw | |
parent | b6a99ee90910a05ca124487cbfcdf0fb1424888a (diff) |
Restrict addition of low-level-can-service to m3ulcb qemux86-64 and intel-corei7-64
Not all boards use a kernel >= 4.8 . This service binding needs features introduced in Kernel 4.8 .
Thus restrict it to m3 and x86-64 for now. Other targets can added later.
Bug-AGL: SPEC-772
Change-Id: I03acdc11e40497d8b8bda702b6e556f234af9ff6
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'recipes-appfw')
-rw-r--r-- | recipes-appfw/packagegroups/packagegroup-agl-appfw-connectivity.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/recipes-appfw/packagegroups/packagegroup-agl-appfw-connectivity.bb b/recipes-appfw/packagegroups/packagegroup-agl-appfw-connectivity.bb index b5fae76cb..093146e3a 100644 --- a/recipes-appfw/packagegroups/packagegroup-agl-appfw-connectivity.bb +++ b/recipes-appfw/packagegroups/packagegroup-agl-appfw-connectivity.bb @@ -16,8 +16,11 @@ RDEPENDS_${PN} += "\ " AGL_APPS = " \ - low-level-can-service \ " +# restricted due to dependency on Kernel >= 4.8 which is not available in all repositories +AGL_APPS_append_m3ulcb = " low-level-can-service " +AGL_APPS_append_intel-corei7-64 = " low-level-can-service " +AGL_APPS_append_qemux86-64 = " low-level-can-service " RDEPENDS_${PN}_append = " \ ${AGL_APPS} \ |