diff options
| author | Daniel Golle | 2025-07-12 14:23:24 +0000 |
|---|---|---|
| committer | Daniel Golle | 2025-07-16 12:14:16 +0000 |
| commit | 93a48afe96444b3f9f2468b959399aecacb2cbb2 (patch) | |
| tree | 4ca8d61f1373fe040aed9971a8ca0e910b06b5a2 | |
| parent | c83e275c9b2e570844a5dfb73df47ef6596a3a0f (diff) | |
| download | openwrt-93a48afe96444b3f9f2468b959399aecacb2cbb2.tar.gz | |
kernel: package hid-alps module
Package driver module fuer ALPS touchpads and trackpoints found
in some laptops.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
| -rw-r--r-- | package/kernel/linux/modules/input.mk | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/package/kernel/linux/modules/input.mk b/package/kernel/linux/modules/input.mk index 4eafc7d6b1..ac7c0c3d6f 100644 --- a/package/kernel/linux/modules/input.mk +++ b/package/kernel/linux/modules/input.mk @@ -37,6 +37,23 @@ endef $(eval $(call KernelPackage,hid-generic)) + +define KernelPackage/hid-alps + SUBMENU:=$(INPUT_MODULES_MENU) + TITLE:=Alps HID device support + DEPENDS:=+kmod-hid + KCONFIG:=CONFIG_HID_ALPS + FILES:=$(LINUX_DIR)/drivers/hid/hid-alps.ko + AUTOLOAD:=$(call AutoProbe,hid-alps) +endef + +define KernelPackage/hid-alps/description + Support for Alps I2C HID touchpads and StickPointer. +endef + +$(eval $(call KernelPackage,hid-alps)) + + define KernelPackage/input-core SUBMENU:=$(INPUT_MODULES_MENU) TITLE:=Input device core |