mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-21 09:42:09 +00:00
package/kernel: kmod-hid: can't mix and match DEPENDS:= and $(call SetDepends/...)
Since the SetDepends macro does a: DEPENDS:= ... it can't be used after setting DEPENDS:= explicitly, or it will clobber the previous value. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> SVN-Revision: 27983
This commit is contained in:
parent
44b272fd58
commit
b413f797cf
@ -252,12 +252,11 @@ $(eval $(call KernelPackage,gpio-nxp-74hc164))
|
|||||||
define KernelPackage/hid
|
define KernelPackage/hid
|
||||||
SUBMENU:=$(OTHER_MENU)
|
SUBMENU:=$(OTHER_MENU)
|
||||||
TITLE:=HID Devices
|
TITLE:=HID Devices
|
||||||
DEPENDS:=+kmod-input-evdev
|
|
||||||
KCONFIG:=CONFIG_HID
|
KCONFIG:=CONFIG_HID
|
||||||
FILES:=$(LINUX_DIR)/drivers/hid/hid.ko
|
FILES:=$(LINUX_DIR)/drivers/hid/hid.ko
|
||||||
AUTOLOAD:=$(call AutoLoad,61,hid)
|
AUTOLOAD:=$(call AutoLoad,61,hid)
|
||||||
$(call SetDepends/hid)
|
$(call SetDepends/hid)
|
||||||
$(call AddDepends/input)
|
$(call AddDepends/input,+kmod-input-evdev)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define KernelPackage/hid/description
|
define KernelPackage/hid/description
|
||||||
|
Loading…
x
Reference in New Issue
Block a user