Config.in 617 B

12345678910111213141516171819202122232425262728
  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_QTOPIA
  16. bool "SDL Qtopia video driver"
  17. depends on BR2_PACKAGE_QT
  18. config BR2_PACKAGE_SDL_X11
  19. bool "SDL X11 video driver"
  20. depends on BR2_PACKAGE_XORG7
  21. endif