diff options
Diffstat (limited to 'drivers.m4')
-rw-r--r-- | drivers.m4 | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -39,7 +39,7 @@ AC_ARG_WITH( [ Newhaven, Noritake, NULL, Pertelian, PHAnderson,] [ PICGraphic, picoLCD, picoLCDGraphic, PNG, PPM, RouterBoard,] [ Sample, serdisplib, ShuttleVFD, SimpleLCD, st2205, T6963,] - [ Trefon, ULA200, USBHUB, USBLCD, VNC, WincorNixdorf, X11], + [ TeakLCM, Trefon, ULA200, USBHUB, USBLCD, VNC, WincorNixdorf, X11], drivers=$withval, drivers=all ) @@ -105,6 +105,7 @@ for driver in $drivers; do SHUTTLEVFD="yes" SIMPLELCD="yes" T6963="yes" + TeakLCM="yes" Trefon="yes" ULA200="yes" USBHUB="yes" @@ -248,6 +249,9 @@ for driver in $drivers; do T6963) T6963=$val ;; + TeakLCM) + TeakLCM=$val + ;; Trefon) Trefon=$val ;; @@ -752,6 +756,14 @@ if test "$T6963" = "yes"; then fi fi +if test "$TeakLCM" = "yes"; then + TEXT="yes" + GPIO="no" + SERIAL="yes" + DRIVERS="$DRIVERS drv_TeakLCM.o" + AC_DEFINE(WITH_TEAK_LCM,1,[TeakLCM driver]) +fi + if test "$Trefon" = "yes"; then if test "$has_usb" = "true"; then TEXT="yes" |