Config.in 592 B

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_SDL
  2. bool "SDL"
  3. help
  4. Simple DirectMedia Layer - SDL is a library that allows
  5. programs portable low level access to a video framebuffer,
  6. audio output, mouse, and keyboard.
  7. http://www.libsdl.org/
  8. if BR2_PACKAGE_SDL
  9. config BR2_PACKAGE_SDL_FBCON
  10. bool "SDL framebuffer console video driver"
  11. default y
  12. config BR2_PACKAGE_SDL_DIRECTFB
  13. bool "SDL DirectFB video driver"
  14. depends on BR2_PACKAGE_DIRECTFB
  15. config BR2_PACKAGE_SDL_X11
  16. bool "SDL X11 video driver"
  17. depends on BR2_PACKAGE_XORG7
  18. select BR2_PACKAGE_XLIB_LIBX11
  19. select BR2_PACKAGE_XLIB_LIBXEXT
  20. endif