aboutsummaryrefslogtreecommitdiffstats
path: root/drivers.m4
diff options
context:
space:
mode:
Diffstat (limited to 'drivers.m4')
-rw-r--r--drivers.m417
1 files changed, 16 insertions, 1 deletions
diff --git a/drivers.m4 b/drivers.m4
index 8b13474..b28ef30 100644
--- a/drivers.m4
+++ b/drivers.m4
@@ -33,7 +33,7 @@ AC_ARG_WITH(
[ LUIse, M50530, MatrixOrbital, MilfordInstruments,]
[ Noritake, NULL, PNG, PPM, RouterBoard, Sample,]
[ serdisplib, SimpleLCD, T6963, Trefon, USBLCD,]
- [ WincorNixdorf, X11],
+ [ USBHUB, WincorNixdorf, X11],
drivers=$withval,
drivers=all
)
@@ -80,6 +80,7 @@ for driver in $drivers; do
SIMPLELCD="yes"
T6963="yes"
Trefon="yes"
+ USBHUB="yes"
USBLCD="yes"
WINCORNIXDORF="yes"
X11="yes"
@@ -162,6 +163,9 @@ for driver in $drivers; do
Trefon)
Trefon=$val
;;
+ USBHUB)
+ USBHUB=$val
+ ;;
USBLCD)
USBLCD=$val
;;
@@ -427,6 +431,17 @@ if test "$Trefon" = "yes"; then
fi
fi
+if test "$USBHUB" = "yes"; then
+ if test "$has_usb" = "true"; then
+ GPIO="yes"
+ DRIVERS="$DRIVERS drv_USBHUB.o"
+ LIBUSB="yes"
+ AC_DEFINE(WITH_USBHUB,1,[USBHUB driver])
+ else
+ AC_MSG_WARN(usb.h not found: USB-Hub driver disabled)
+ fi
+fi
+
if test "$USBLCD" = "yes"; then
TEXT="yes"
SERIAL="yes"