Back to home page

OSCL-LXR

 
 

    


0001   FBTFT
0002 =========
0003 
0004 Linux Framebuffer drivers for small TFT LCD display modules.
0005 The module 'fbtft' makes writing drivers for some of these displays very easy.
0006 
0007 Development is done on a Raspberry Pi running the Raspbian "wheezy" distribution.
0008 
0009 INSTALLATION
0010   Download kernel sources
0011 
0012   From Linux 3.15
0013     cd drivers/video/fbdev/fbtft
0014     git clone https://github.com/notro/fbtft.git
0015 
0016     Add to drivers/video/fbdev/Kconfig:   source "drivers/video/fbdev/fbtft/Kconfig"
0017     Add to drivers/video/fbdev/Makefile:  obj-y += fbtft/
0018 
0019   Before Linux 3.15
0020     cd drivers/video
0021     git clone https://github.com/notro/fbtft.git
0022 
0023     Add to drivers/video/Kconfig:   source "drivers/video/fbtft/Kconfig"
0024     Add to drivers/video/Makefile:  obj-y += fbtft/
0025 
0026   Enable driver(s) in menuconfig and build the kernel
0027 
0028 
0029 See wiki for more information: https://github.com/notro/fbtft/wiki
0030 
0031 
0032 Source: https://github.com/notro/fbtft/