Kconfig 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. if ARCH_VT8500
  2. config VTWM_VERSION_VT8500
  3. bool
  4. config VTWM_VERSION_WM8505
  5. bool
  6. config MACH_BV07
  7. bool "Benign BV07-8500 Mini Netbook"
  8. depends on ARCH_VT8500
  9. select VTWM_VERSION_VT8500
  10. help
  11. Add support for the inexpensive 7-inch netbooks sold by many
  12. Chinese distributors under various names. Note that there are
  13. many hardware implementations in identical exterior, make sure
  14. that yours is indeed based on a VIA VT8500 chip.
  15. config MACH_WM8505_7IN_NETBOOK
  16. bool "WM8505 7-inch generic netbook"
  17. depends on ARCH_VT8500
  18. select VTWM_VERSION_WM8505
  19. help
  20. Add support for the inexpensive 7-inch netbooks sold by many
  21. Chinese distributors under various names. Note that there are
  22. many hardware implementations in identical exterior, make sure
  23. that yours is indeed based on a WonderMedia WM8505 chip.
  24. comment "LCD panel size"
  25. config WMT_PANEL_800X480
  26. bool "7-inch with 800x480 resolution"
  27. depends on (FB_VT8500 || FB_WM8505)
  28. default y
  29. help
  30. These are found in most of the netbooks in generic cases, as
  31. well as in Eken M001 tablets and possibly elsewhere.
  32. To select this panel at runtime, say y here and append
  33. 'panel=800x480' to your kernel command line. Otherwise, the
  34. largest one available will be used.
  35. config WMT_PANEL_800X600
  36. bool "8-inch with 800x600 resolution"
  37. depends on (FB_VT8500 || FB_WM8505)
  38. help
  39. These are found in Eken M003 tablets and possibly elsewhere.
  40. To select this panel at runtime, say y here and append
  41. 'panel=800x600' to your kernel command line. Otherwise, the
  42. largest one available will be used.
  43. config WMT_PANEL_1024X576
  44. bool "10-inch with 1024x576 resolution"
  45. depends on (FB_VT8500 || FB_WM8505)
  46. help
  47. These are found in CherryPal netbooks and possibly elsewhere.
  48. To select this panel at runtime, say y here and append
  49. 'panel=1024x576' to your kernel command line. Otherwise, the
  50. largest one available will be used.
  51. config WMT_PANEL_1024X600
  52. bool "10-inch with 1024x600 resolution"
  53. depends on (FB_VT8500 || FB_WM8505)
  54. help
  55. These are found in Eken M006 tablets and possibly elsewhere.
  56. To select this panel at runtime, say y here and append
  57. 'panel=1024x600' to your kernel command line. Otherwise, the
  58. largest one available will be used.
  59. endif