diff options
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 | 4 |
1 files changed, 2 insertions, 2 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 8348c1b4..b33780d2 100644 --- a/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc +++ b/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc | |||
@@ -82,7 +82,7 @@ PACKAGES =+ "libclc-imx libclc-imx-dev \ | |||
82 | libopenvx-imx libopenvx-imx-dev \ | 82 | libopenvx-imx libopenvx-imx-dev \ |
83 | " | 83 | " |
84 | python __anonymous () { | 84 | python __anonymous () { |
85 | has_vivante_kernel_driver_support = (d.getVar('MACHINE_HAS_VIVANTE_KERNEL_DRIVER_SUPPORT', True) or '0') | 85 | has_vivante_kernel_driver_support = (d.getVar('MACHINE_HAS_VIVANTE_KERNEL_DRIVER_SUPPORT') or '0') |
86 | if has_vivante_kernel_driver_support != '1': | 86 | if has_vivante_kernel_driver_support != '1': |
87 | raise bb.parse.SkipPackage('The kernel of machine needs to have Vivante kernel driver support for this recipe to be used.') | 87 | raise bb.parse.SkipPackage('The kernel of machine needs to have Vivante kernel driver support for this recipe to be used.') |
88 | } | 88 | } |
@@ -102,7 +102,7 @@ SOLIBS = "${SOLIBSDEV}" | |||
102 | python __anonymous() { | 102 | python __anonymous() { |
103 | # FIXME: All binaries lack GNU_HASH in elf binary but as we don't have | 103 | # FIXME: All binaries lack GNU_HASH in elf binary but as we don't have |
104 | # the source we cannot fix it. Disable the insane check for now. | 104 | # the source we cannot fix it. Disable the insane check for now. |
105 | packages = d.getVar('PACKAGES', True).split() | 105 | packages = d.getVar('PACKAGES').split() |
106 | for p in packages: | 106 | for p in packages: |
107 | d.appendVar("INSANE_SKIP_%s" % p, " ldflags") | 107 | d.appendVar("INSANE_SKIP_%s" % p, " ldflags") |
108 | 108 | ||