README 910 B

123456789101112131415161718192021222324252627282930313233
  1. FBTFT
  2. =========
  3. Linux Framebuffer drivers for small TFT LCD display modules.
  4. The module 'fbtft' makes writing drivers for some of these displays very easy.
  5. Development is done on a Raspberry Pi running the Raspbian "wheezy" distribution.
  6. INSTALLATION
  7. Download kernel sources
  8. From Linux 3.15
  9. cd drivers/video/fbdev/fbtft
  10. git clone https://github.com/notro/fbtft.git
  11. Add to drivers/video/fbdev/Kconfig: source "drivers/video/fbdev/fbtft/Kconfig"
  12. Add to drivers/video/fbdev/Makefile: obj-y += fbtft/
  13. Before Linux 3.15
  14. cd drivers/video
  15. git clone https://github.com/notro/fbtft.git
  16. Add to drivers/video/Kconfig: source "drivers/video/fbtft/Kconfig"
  17. Add to drivers/video/Makefile: obj-y += fbtft/
  18. Enable driver(s) in menuconfig and build the kernel
  19. See wiki for more information: https://github.com/notro/fbtft/wiki
  20. Source: https://github.com/notro/fbtft/