33 lines · plain
1 FBTFT2=========3 4Linux Framebuffer drivers for small TFT LCD display modules.5The module 'fbtft' makes writing drivers for some of these displays very easy.6 7Development is done on a Raspberry Pi running the Raspbian "wheezy" distribution.8 9INSTALLATION10 Download kernel sources11 12 From Linux 3.1513 cd drivers/video/fbdev/fbtft14 git clone https://github.com/notro/fbtft.git15 16 Add to drivers/video/fbdev/Kconfig: source "drivers/video/fbdev/fbtft/Kconfig"17 Add to drivers/video/fbdev/Makefile: obj-y += fbtft/18 19 Before Linux 3.1520 cd drivers/video21 git clone https://github.com/notro/fbtft.git22 23 Add to drivers/video/Kconfig: source "drivers/video/fbtft/Kconfig"24 Add to drivers/video/Makefile: obj-y += fbtft/25 26 Enable driver(s) in menuconfig and build the kernel27 28 29See wiki for more information: https://github.com/notro/fbtft/wiki30 31 32Source: https://github.com/notro/fbtft/33