diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2020-10-23 11:17:49 -0700 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2020-11-13 19:04:43 -0300 |
commit | aa6064a5c2d1e897ddf7d4c895d2c4b1729080f1 (patch) | |
tree | 1b694cba002201a82c82eb10c0382fff5883b061 /recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc | |
parent | 8183e74d1e34974a6992396fc5e1cab5696a91e5 (diff) | |
download | meta-freescale-aa6064a5c2d1e897ddf7d4c895d2c4b1729080f1.tar.gz |
imx-gpu-viv: Fix rootfs conflict with libvulkan-dev
The rootfs stage is failing with the following error:
```
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
libvulkan-imx-dev : Conflicts: libvulkan-dev
Recommends: libglslc-imx-dev but it is not installable
Recommends: libvsc-imx-dev but it is not installable
E: Unable to correct problems, you have held broken packages.
```
It seems this is a result of disabling debian renaming. This was
originally added in an NXP layer due to a conflict with a vulkan
recipe that is no longer being used. Restoring the overrides
for libvulkan-imx to the default state fixes the build break.
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Diffstat (limited to 'recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc')
-rw-r--r-- | recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc b/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc index 43a82a48..9eeea103 100644 --- a/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc +++ b/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc | |||
@@ -121,7 +121,7 @@ python __anonymous() { | |||
121 | # they don't get Debian-renamed (which would remove the -imx suffix). | 121 | # they don't get Debian-renamed (which would remove the -imx suffix). |
122 | for p in (("libegl", "libegl1"), ("libgl", "libgl1"), | 122 | for p in (("libegl", "libegl1"), ("libgl", "libgl1"), |
123 | ("libgles1", "libglesv1-cm1"), ("libgles2", "libglesv2-2"), | 123 | ("libgles1", "libglesv1-cm1"), ("libgles2", "libglesv2-2"), |
124 | ("libgles3",) , ("libvulkan",), ("libgbm",)): | 124 | ("libgles3",), ("libgbm",)): |
125 | fullp = p[0] + "-imx" | 125 | fullp = p[0] + "-imx" |
126 | pkgs = "".join(' %s' % i for i in p) | 126 | pkgs = "".join(' %s' % i for i in p) |
127 | d.setVar("DEBIAN_NOAUTONAME_" + fullp, "1") | 127 | d.setVar("DEBIAN_NOAUTONAME_" + fullp, "1") |