aboutsummaryrefslogtreecommitdiffstats
path: root/drivers.m4
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-08-29 13:03:41 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-08-29 13:03:41 +0000
commit727bcb7cd8f887d4633558e29845c5ab825fbea4 (patch)
treecc11ccab2190d550254fbf984613f757932460a7 /drivers.m4
parent255d4ef19a28b9fcc1e34c4cb529eefbfed04afb (diff)
downloadlcd4linux-727bcb7cd8f887d4633558e29845c5ab825fbea4.tar.gz
[lcd4linux @ 2004-08-29 13:03:40 by reinelt]
added RouterBoard driver git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@484 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drivers.m4')
-rw-r--r--drivers.m439
1 files changed, 24 insertions, 15 deletions
diff --git a/drivers.m4 b/drivers.m4
index 145710a..561ad8b 100644
--- a/drivers.m4
+++ b/drivers.m4
@@ -9,9 +9,9 @@ AC_ARG_WITH(
[ drivers may be excluded with 'all,!<driver>',]
[ (try 'all,\!<driver>' if your shell complains...)]
[ possible drivers are:]
- [ BeckmannEgle, CrystalFontz, Curses, Cwlinux,]
- [ HD44780, M50530, T6963, USBLCD, MatrixOrbital,]
- [ MilfordInstruments, NULL, PNG, PPM, X11],
+ [ BeckmannEgle, CrystalFontz, Curses, Cwlinux, HD44780,]
+ [ M50530, MatrixOrbital, MilfordInstruments, NULL]
+ [ PNG, PPM, RouterBoard, T6963, USBLCD, X11],
drivers=$withval,
drivers=all
)
@@ -38,14 +38,14 @@ for driver in $drivers; do
CWLINUX="yes"
HD44780="yes"
M50530="yes"
- T6963="yes"
- USBLCD="yes"
MATRIXORBITAL="yes"
MILINST="yes"
NULL="yes"
- PALMPILOT="yes"
PNG="yes"
PPM="yes"
+ ROUTERBOARD="yes"
+ T6963="yes"
+ USBLCD="yes"
X11="yes"
;;
BeckmannEgle)
@@ -66,27 +66,30 @@ for driver in $drivers; do
M50530)
M50530=$val
;;
- NULL)
- NULL=$val;
- ;;
- T6963)
- T6963=$val
- ;;
- USBLCD)
- USBLCD=$val
- ;;
MatrixOrbital)
MATRIXORBITAL=$val
;;
MilfordInstruments)
MILINST=$val
;;
+ NULL)
+ NULL=$val;
+ ;;
PNG)
PNG=$val
;;
PPM)
PPM=$val
;;
+ RouterBoard)
+ ROUTERBOARD=$val
+ ;;
+ T6963)
+ T6963=$val
+ ;;
+ USBLCD)
+ USBLCD=$val
+ ;;
X11)
X11=$val
;;
@@ -185,6 +188,12 @@ if test "$IMAGE" = "yes"; then
DRIVERS="$DRIVERS drv_Image.o"
fi
+if test "$ROUTERBOARD" = "yes"; then
+ TEXT="yes"
+ DRIVERS="$DRIVERS drv_RouterBoard.o"
+ AC_DEFINE(WITH_ROUTERBOARD,1,[RouterBoard driver])
+fi
+
if test "$T6963" = "yes"; then
GRAPHIC="yes"
PARPORT="yes"