diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -6147,6 +6147,7 @@ echo "${ECHO_T}done" >&6 # generic display drivers TEXT="no" GRAPHIC="no" +GPIO="no" IMAGE="no" # generiv I/O drivers @@ -6262,6 +6263,7 @@ fi if test "$LPH7508" = "yes"; then GRAPHICS="yes" PARPORT="yes" + GPIO="yes" DRIVERS="$DRIVERS drv_LPH7508.o" cat >>confdefs.h <<\_ACEOF @@ -6494,6 +6496,10 @@ if test "$GRAPHIC" = "yes"; then DRIVERS="$DRIVERS drv_generic_graphic.o" fi +# generic GPIO driver +if test "$GPIO" = "yes"; then + DRIVERS="$DRIVERS drv_generic_gpio.o" +fi # generic parport driver if test "$PARPORT" = "yes"; then |