hc
2023-05-26 a23f51ed7a39e452c1037343a84d7db1ca2c5bd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
config BR2_PACKAGE_XDRIVER_XF86_VIDEO_IMX
   bool "xf86-video-imx"
   depends on BR2_ARM_EABI # libz160
   depends on BR2_TOOLCHAIN_USES_GLIBC # libz160
   depends on BR2_LINUX_KERNEL # linux/mxcfb.h
   depends on BR2_PACKAGE_GPU_AMD_BIN_MX51_OUTPUT_X11
   select BR2_PACKAGE_LIBZ160
   select BR2_PACKAGE_XORGPROTO
   help
     X.Org driver for iMX5 GPU
 
     To use this driver, add the correct configuration to your
     /etc/X11/xorg.conf, as follows:
 
     Section "Device"
       [...]
       Driver "imx"
       Option "fbdev" "/dev/fb0"
     EndSection
 
comment "xf86-video-imx needs an EABI toolchain w/ glibc"
   depends on BR2_arm
   depends on !BR2_ARM_EABI || !BR2_TOOLCHAIN_USES_GLIBC
 
comment "xf86-video-imx needs gpu-amd-bin-mx51 with X11 output and a Linux kernel to be built"
   depends on BR2_arm
   depends on !BR2_LINUX_KERNEL || !BR2_PACKAGE_GPU_AMD_BIN_MX51_OUTPUT_X11