2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-27 06:34:11 +08:00
linux-next/drivers/staging/fbtft
Thomas Petazzoni 66c06c8379 staging: fbtft: add fb_hx8347d driver
This commit adds the fb_hx8347d driver from the fbtft project at
https://github.com/notro/fbtft.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Noralf Tronnes <notro@tronnes.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2015-01-17 16:46:46 -08:00
..
fb_agm1264k-fl.c
fb_bd663474.c staging: fbtft: add fb_bd663474 driver 2015-01-17 16:46:46 -08:00
fb_hx8340bn.c staging: fbtft: add fb_hx8340bn driver 2015-01-17 16:46:46 -08:00
fb_hx8347d.c staging: fbtft: add fb_hx8347d driver 2015-01-17 16:46:46 -08:00
fbtft-bus.c
fbtft-core.c
fbtft-io.c
fbtft-sysfs.c
fbtft.h
Kconfig staging: fbtft: add fb_hx8347d driver 2015-01-17 16:46:46 -08:00
Makefile staging: fbtft: add fb_hx8347d driver 2015-01-17 16:46:46 -08:00
README

  FBTFT
=========

Linux Framebuffer drivers for small TFT LCD display modules.
The module 'fbtft' makes writing drivers for some of these displays very easy.

Development is done on a Raspberry Pi running the Raspbian "wheezy" distribution.

INSTALLATION
  Download kernel sources

  From Linux 3.15  
    cd drivers/video/fbdev/fbtft
    git clone https://github.com/notro/fbtft.git
    
    Add to drivers/video/fbdev/Kconfig:   source "drivers/video/fbdev/fbtft/Kconfig"
    Add to drivers/video/fbdev/Makefile:  obj-y += fbtft/
  
  Before Linux 3.15  
    cd drivers/video
    git clone https://github.com/notro/fbtft.git
    
    Add to drivers/video/Kconfig:   source "drivers/video/fbtft/Kconfig"
    Add to drivers/video/Makefile:  obj-y += fbtft/
  
  Enable driver(s) in menuconfig and build the kernel


See wiki for more information: https://github.com/notro/fbtft/wiki


Source: https://github.com/notro/fbtft/