diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2022-04-04 16:28:58 -0500 |
---|---|---|
committer | Tom Hochstein <tom.hochstein@nxp.com> | 2022-04-04 16:57:41 -0500 |
commit | 904c6c886587c611ed66d8b0bd9d3c7e6c20af13 (patch) | |
tree | 49c99af6aa5bf24d6f740ca1bb766e1f6d87fac3 /recipes-multimedia | |
parent | 0fb851cdc99a2541afbec9232993dc537a1816db (diff) | |
download | meta-freescale-904c6c886587c611ed66d8b0bd9d3c7e6c20af13.tar.gz |
imx-gst1.0-plugin: Adjust libdrm dependency
The 7ULP build is broken:
```
../git/plugins/compositor/gstimxcompositor.c:124:10: fatal error: libdrm/drm_fourcc.h: No such file or directory
124 | #include <libdrm/drm_fourcc.h>
| ^~~~~~~~~~~~~~~~~~~~~
```
Replace the imxvpu condition for the libdrm dependency to all fbdev
devices with GPU. For i.MX 6 and 7, the new condition simply extends
what the old condition provided. For i.MX 8, the new condition removes
the explicit dependency. It seems the dependency is still needed, but it
is satisfied implicitly.
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Diffstat (limited to 'recipes-multimedia')
-rw-r--r-- | recipes-multimedia/gstreamer/imx-gst1.0-plugin_4.6.4.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes-multimedia/gstreamer/imx-gst1.0-plugin_4.6.4.bb b/recipes-multimedia/gstreamer/imx-gst1.0-plugin_4.6.4.bb index 42bde58c..ab8117b3 100644 --- a/recipes-multimedia/gstreamer/imx-gst1.0-plugin_4.6.4.bb +++ b/recipes-multimedia/gstreamer/imx-gst1.0-plugin_4.6.4.bb | |||
@@ -11,7 +11,8 @@ DEPENDS = "imx-codec imx-parser gstreamer1.0 gstreamer1.0-plugins-base gstreamer | |||
11 | DEPENDS:append:mx6-nxp-bsp = " imx-lib" | 11 | DEPENDS:append:mx6-nxp-bsp = " imx-lib" |
12 | DEPENDS:append:mx7-nxp-bsp = " imx-lib" | 12 | DEPENDS:append:mx7-nxp-bsp = " imx-lib" |
13 | DEPENDS:append:mx8ulp-nxp-bsp = " imx-lib" | 13 | DEPENDS:append:mx8ulp-nxp-bsp = " imx-lib" |
14 | DEPENDS:append:imxvpu = " imx-vpuwrap libdrm" | 14 | DEPENDS:append:imxvpu = " imx-vpuwrap" |
15 | DEPENDS:append:imxfbdev:imxgpu = " libdrm" | ||
15 | 16 | ||
16 | # For backwards compatibility | 17 | # For backwards compatibility |
17 | RREPLACES:${PN} = "gst1.0-fsl-plugin" | 18 | RREPLACES:${PN} = "gst1.0-fsl-plugin" |