1*4882a593Smuzhiyunconfig BR2_PACKAGE_RPI_USERLAND 2*4882a593Smuzhiyun bool "rpi-userland" 3*4882a593Smuzhiyun depends on BR2_arm 4*4882a593Smuzhiyun depends on BR2_INSTALL_LIBSTDCPP 5*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_THREADS 6*4882a593Smuzhiyun depends on !BR2_STATIC_LIBS 7*4882a593Smuzhiyun select BR2_PACKAGE_HAS_LIBEGL 8*4882a593Smuzhiyun select BR2_PACKAGE_HAS_LIBGLES 9*4882a593Smuzhiyun select BR2_PACKAGE_HAS_LIBOPENVG 10*4882a593Smuzhiyun select BR2_PACKAGE_HAS_LIBOPENMAX 11*4882a593Smuzhiyun help 12*4882a593Smuzhiyun Raspberry Pi Userland contains the necessary library to use 13*4882a593Smuzhiyun the VideoCore driver. 14*4882a593Smuzhiyun 15*4882a593Smuzhiyun Includes source for the ARM side code to interface to: EGL, 16*4882a593Smuzhiyun mmal, GLESv2, vcos, openmaxil, vchiq_arm, bcm_host, WFC, 17*4882a593Smuzhiyun OpenVG. 18*4882a593Smuzhiyun 19*4882a593Smuzhiyun https://github.com/raspberrypi/userland/ 20*4882a593Smuzhiyun 21*4882a593Smuzhiyunif BR2_PACKAGE_RPI_USERLAND 22*4882a593Smuzhiyun 23*4882a593Smuzhiyunconfig BR2_PACKAGE_PROVIDES_LIBEGL 24*4882a593Smuzhiyun default "rpi-userland" 25*4882a593Smuzhiyun 26*4882a593Smuzhiyunconfig BR2_PACKAGE_PROVIDES_LIBGLES 27*4882a593Smuzhiyun default "rpi-userland" 28*4882a593Smuzhiyun 29*4882a593Smuzhiyunconfig BR2_PACKAGE_PROVIDES_LIBOPENVG 30*4882a593Smuzhiyun default "rpi-userland" 31*4882a593Smuzhiyun 32*4882a593Smuzhiyunconfig BR2_PACKAGE_PROVIDES_LIBOPENMAX 33*4882a593Smuzhiyun default "rpi-userland" 34*4882a593Smuzhiyun 35*4882a593Smuzhiyunconfig BR2_PACKAGE_RPI_USERLAND_HELLO 36*4882a593Smuzhiyun bool "hello_pi examples" 37*4882a593Smuzhiyun help 38*4882a593Smuzhiyun Install the hello-pi examples to test the HW (GPU, camera...) 39*4882a593Smuzhiyun 40*4882a593Smuzhiyunendif 41*4882a593Smuzhiyun 42*4882a593Smuzhiyuncomment "rpi-userland needs a toolchain w/ C++, threads, dynamic library" 43*4882a593Smuzhiyun depends on BR2_arm 44*4882a593Smuzhiyun depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ 45*4882a593Smuzhiyun BR2_STATIC_LIBS 46