Browse Source

package/imx-gpu-viv: fix masking fb option

Only the 32bit ARM blob provides the framebuffer backend. This is
apparently independent of which imx8 derivate is used, so changed
the condition for the config option accordingly.

Signed-off-by: Andreas Naumann <anaumann@ultratronik.de>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
(cherry picked from commit 47a02a5afcdf5d6a72d203c31dabd5727547057c)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Andreas Naumann 1 year ago
parent
commit
bf3225e551
1 changed files with 2 additions and 2 deletions
  1. 2 2
      package/freescale-imx/imx-gpu-viv/Config.in

+ 2 - 2
package/freescale-imx/imx-gpu-viv/Config.in

@@ -45,8 +45,8 @@ choice
 
 config BR2_PACKAGE_IMX_GPU_VIV_OUTPUT_FB
 	bool "Framebuffer"
-	# The i.MX8 blob doesn't support FB output
-	depends on !BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX8M
+	# The i.MX8 aarch64 blob doesn't support FB output
+	depends on BR2_arm
 
 config BR2_PACKAGE_IMX_GPU_VIV_OUTPUT_WL
 	bool "Wayland"