diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2017-07-24 23:12:10 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2017-07-25 09:16:17 +0000 |
commit | 8b7e8f7c73170b5a3c02e474dbea6b58a2fcc4ca (patch) | |
tree | fb87b7c24f0d2094333e02751bbb504e53499299 | |
parent | 4526758412fec4f767a2625eafd8da4d25fcebff (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>
-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} \ |