|
From: Jason G. <kil...@gm...> - 2014-10-04 01:25:07
|
Kernel 3.17 migrates the wacom.ko driver from the USB tree to the HID tree and now uses the CONFIG_HID_WACOM flag. --- 3.17/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3.17/Makefile.in b/3.17/Makefile.in index eaf3a90..3ef0c9d 100644 --- a/3.17/Makefile.in +++ b/3.17/Makefile.in @@ -4,13 +4,13 @@ ifneq ($(KERNELRELEASE),) # Do NOT indent stuff in this part! It has to be like this to make the # $(error ... ) stuff work -ifneq ($(CONFIG_USB_WACOM),y) +ifneq ($(CONFIG_HID_WACOM),y) wacom-objs := wacom_wac.o wacom_sys.o obj-m += wacom.o obj-m += wacom_w8001.o else $(error You requested to build wacom with configure, but wacom is configured as built-in in your kernel config) -endif # CONFIG_USB_WACOM +endif # CONFIG_HID_WACOM else # We were called from command line PWD := $(shell pwd) -- 2.1.1 |