mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-28 14:44:39 +08:00
hog: Add suspend back-end selection
This patch series introduces back-end selection for HoG suspend drivers. The default back-end is called "dummy", added for testing purpose only.
This commit is contained in:
parent
df78f047c0
commit
16a8c88963
@ -439,6 +439,9 @@ audio/telephony.c: audio/@TELEPHONY_DRIVER@
|
||||
profiles/sap/sap.c: profiles/sap/@SAP_DRIVER@
|
||||
$(AM_V_GEN)$(LN_S) $(abs_top_srcdir)/$< $@
|
||||
|
||||
profiles/input/suspend.c: profiles/input/@HOG_SUSPEND_DRIVER@
|
||||
$(AM_V_GEN)$(LN_S) $(abs_top_srcdir)/$< $@
|
||||
|
||||
scripts/%.rules:
|
||||
$(AM_V_GEN)cp $(subst 97-,,$@) $@
|
||||
|
||||
|
@ -185,6 +185,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [
|
||||
datafiles_enable=yes
|
||||
telephony_driver=dummy
|
||||
sap_driver=dummy
|
||||
hog_suspend_driver=dummy
|
||||
dbusoob_enable=no
|
||||
wiimote_enable=no
|
||||
gatt_enable=no
|
||||
@ -288,6 +289,12 @@ AC_DEFUN([AC_ARG_BLUEZ], [
|
||||
wiimote_enable=${enableval}
|
||||
])
|
||||
|
||||
AC_ARG_WITH(gatt, AC_HELP_STRING([--with-hog-suspend=DRIVER], [select HoG suspend driver]), [
|
||||
hog_suspend_driver=${withval}
|
||||
])
|
||||
|
||||
AC_SUBST([HOG_SUSPEND_DRIVER], [suspend-${hog_suspend_driver}.c])
|
||||
|
||||
AC_ARG_ENABLE(gatt, AC_HELP_STRING([--enable-gatt], [enable gatt module]), [
|
||||
gatt_enable=${enableval}
|
||||
])
|
||||
|
Loading…
Reference in New Issue
Block a user