* Don't include the multimedia accelerated elements when the MACHINE_FEATURES do not include the mmip feature.
Signed-off-by: Chase Maupin <[email protected]> --- .../packagegroups/packagegroup-arago-gst.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-gst.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-gst.bb index 03a04c4..a5367ea 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-gst.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-gst.bb @@ -1,6 +1,6 @@ DESCRIPTION = "Task to add gstreamer and gstreamer plugins" LICENSE = "MIT" -PR = "r7" +PR = "r8" inherit packagegroup @@ -15,8 +15,8 @@ GSTREAMER = " \ " GSTREAMER_ACCEL_MM = "" -GSTREAMER_ACCEL_MM_omap-a15 = "gst-plugins-ducati" -GSTREAMER_ACCEL_MM_append_dra7xx = " gst-plugins-vpe" +GSTREAMER_ACCEL_MM_omap-a15 = "${@base_contains('MACHINE_FEATURES', 'mmip', 'gst-plugins-ducati', '', d)}" +GSTREAMER_ACCEL_MM_append_dra7xx = "${@base_contains('MACHINE_FEATURES', 'mmip', ' gst-plugins-vpe', '', d)}" RDEPENDS_${PN} = "\ ${GSTREAMER} \ -- 1.7.9.5 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
