diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2022-08-19 11:53:46 -0500 |
---|---|---|
committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2022-08-26 20:54:38 +0000 |
commit | 367c0535c16a95adfb412f6cac4264ab4b3e86fb (patch) | |
tree | e2c8b5be1697039d57ffb60221ca3de378426ab0 /recipes-graphics/imx-g2d/imx-dpu-g2d_2.1.0.bb | |
parent | 98d60955cbf2a215dbcf82fa3b810c90f4c8a657 (diff) | |
download | meta-freescale-367c0535c16a95adfb412f6cac4264ab4b3e86fb.tar.gz |
imx-dpu-g2d: Upgrade 2.0.0 -> 2.1.0
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
(cherry picked from commit 22dda45cb95a4d04915bde950d453f4ec514b0d7)
Diffstat (limited to 'recipes-graphics/imx-g2d/imx-dpu-g2d_2.1.0.bb')
-rw-r--r-- | recipes-graphics/imx-g2d/imx-dpu-g2d_2.1.0.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/recipes-graphics/imx-g2d/imx-dpu-g2d_2.1.0.bb b/recipes-graphics/imx-g2d/imx-dpu-g2d_2.1.0.bb new file mode 100644 index 00000000..ad8de74c --- /dev/null +++ b/recipes-graphics/imx-g2d/imx-dpu-g2d_2.1.0.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | # Copyright (C) 2016 Freescale Semiconductor | ||
2 | # Copyright 2017-2022 NXP | ||
3 | # Released under the MIT license (see COPYING.MIT for the terms) | ||
4 | |||
5 | DESCRIPTION = "G2D library using i.MX DPU" | ||
6 | LICENSE = "Proprietary" | ||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=d3c315c6eaa43e07d8c130dc3a04a011" | ||
8 | |||
9 | DEPENDS = "libgal-imx libdrm" | ||
10 | PROVIDES += "virtual/libg2d" | ||
11 | |||
12 | SRC_URI = "${FSL_MIRROR}/${BPN}-${PV}.bin;fsl-eula=true" | ||
13 | SRC_URI[md5sum] = "fa60a480c8d98cee969aa520bc829bf4" | ||
14 | SRC_URI[sha256sum] = "65acc7345dcaf39536d60ee4516ad731c403790ed05d61a818601392554a6620" | ||
15 | |||
16 | inherit fsl-eula-unpack | ||
17 | |||
18 | do_install () { | ||
19 | install -d ${D}${libdir} | ||
20 | install -d ${D}${includedir} | ||
21 | cp -r ${S}/g2d/usr/lib/*.so* ${D}${libdir} | ||
22 | cp -Pr ${S}/g2d/usr/include/* ${D}${includedir} | ||
23 | } | ||
24 | |||
25 | INSANE_SKIP:${PN} += "ldflags" | ||
26 | |||
27 | COMPATIBLE_MACHINE = "(imxdpu)" | ||