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