blob: caa3dce01e258ac24128c8b55c86a58651eed62d [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
2# Copyright (C) 2008-2012 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9include $(INCLUDE_DIR)/kernel.mk
10
11PKG_NAME:=gpio-button-hotplug
12PKG_RELEASE:=5
13PKG_LICENSE:=GPL-2.0
14
15include $(INCLUDE_DIR)/package.mk
16
17define KernelPackage/gpio-button-hotplug
18 SUBMENU:=GPIO support
19 TITLE:=Simple GPIO Button Hotplug driver
20 FILES:=$(PKG_BUILD_DIR)/gpio-button-hotplug.ko
21 AUTOLOAD:=$(call AutoLoad,30,gpio-button-hotplug,1)
22 KCONFIG:=
23endef
24
25define KernelPackage/gpio-button-hotplug/description
26 This is a replacement for the following in-kernel drivers:
27 1) gpio_keys (KEYBOARD_GPIO)
28 2) gpio_keys_polled (KEYBOARD_GPIO_POLLED)
29
30 Instead of generating input events (like in-kernel drivers do) it generates
31 uevent-s and broadcasts them. This allows disabling input subsystem which is
32 an overkill for OpenWrt simple needs.
33endef
34
35define Build/Compile
36 $(KERNEL_MAKE) M="$(PKG_BUILD_DIR)" modules
37endef
38
39$(eval $(call KernelPackage,gpio-button-hotplug))