diff options
author | Mohamed Abbas <mohamed.abbas@intel.com> | 2010-04-01 23:13:18 +0200 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2010-04-01 23:13:18 +0200 |
commit | 312fefcca61385943c2231de89dddf6aec773cc3 (patch) | |
tree | 30d008fdf7aa3f69f49b7f3e60d65370863893ed /configure.ac | |
parent | 5a0631e01845981690ae5797dc3deeeb3d4aab12 (diff) | |
download | connman-312fefcca61385943c2231de89dddf6aec773cc3.tar.gz connman-312fefcca61385943c2231de89dddf6aec773cc3.tar.bz2 connman-312fefcca61385943c2231de89dddf6aec773cc3.zip |
Add hh2serial GPS support
This patch brings the hh2serial GPS device on and off with offline mode
changes. Although this power control is currently done through sysfs
entries, this will be fixed once the hh2serial driver gets proper
rfkill support.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 6203b6d2..a3fa54d3 100644 --- a/configure.ac +++ b/configure.ac @@ -86,6 +86,12 @@ AC_ARG_ENABLE(bluetooth, AM_CONDITIONAL(BLUETOOTH, test "${enable_bluetooth}" != "no") AM_CONDITIONAL(BLUETOOTH_BUILTIN, test "${enable_bluetooth}" = "builtin") +AC_ARG_ENABLE(hh2serial-gps, + AC_HELP_STRING([--enable-hh2serial-gps], [enable hh2serial GPS support]), + [enable_hh2serial_gps=${enableval}], [enable_hh2serial_gps="no"]) +AM_CONDITIONAL(HH2SERIAL_GPS, test "${enable_hh2serial_gps}" != "no") +AM_CONDITIONAL(HH2SERIAL_GPS_BUILTIN, test "${enable_hh2serial_gps}" = "builtin") + AC_ARG_ENABLE(ofono, AC_HELP_STRING([--enable-ofono], [enable oFono support]), [enable_ofono=${enableval}], [enable_ofono="no"]) |