diff options
author | Hauke Mehrtens <hauke@openwrt.org> | 2009-03-07 17:07:24 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@openwrt.org> | 2009-03-07 17:07:24 +0000 |
commit | 2f99a90a3055e7379302430c8992c58e7b814ed8 (patch) | |
tree | 14946408e7fb60291d678cc124c841b234fa7c20 /package/kernel/modules/other.mk | |
parent | 3724a89fd62c55075852302b96905c779bd73794 (diff) | |
download | upstream-2f99a90a3055e7379302430c8992c58e7b814ed8.tar.gz upstream-2f99a90a3055e7379302430c8992c58e7b814ed8.tar.bz2 upstream-2f99a90a3055e7379302430c8992c58e7b814ed8.zip |
[kernel] extract the rfkill module to an extra package, only build rfkill module if it is not integrated into the kernel.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14780 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kernel/modules/other.mk')
-rw-r--r-- | package/kernel/modules/other.mk | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index 1e6c1db254..8499c461f9 100644 --- a/package/kernel/modules/other.mk +++ b/package/kernel/modules/other.mk @@ -786,3 +786,25 @@ endef $(eval $(call KernelPackage,textsearch)) + +define KernelPackage/rfkill + SUBMENU:=$(OTHER_MENU) + TITLE:=RF switch subsystem support + DEPENDS:=@LINUX_2_6 @!LINUX_2_6_21 @!TARGET_rb532 @!TARGET_avr32 @!TARGET_brcm47xx @!TARGET_s3c24xx @!TARGET_ifxmips @!TARGET_atheros @!TARGET_adm5120 @!TARGET_ar7 @!TARGET_ppc40x @!TARGET_ixp4xx @!TARGET_rdc + KCONFIG:= \ + CONFIG_RFKILL \ + CONFIG_RFKILL_INPUT \ + CONFIG_RFKILL_LEDS=y + FILES:= \ + $(LINUX_DIR)/net/rfkill/rfkill.$(LINUX_KMOD_SUFFIX) \ + $(LINUX_DIR)/net/rfkill/rfkill-input.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,20,rfkill rfkill-input) +endef + +define KernelPackage/rfkill/description + Say Y here if you want to have control over RF switches + found on many WiFi and Bluetooth cards. +endef + +$(eval $(call KernelPackage,rfkill)) + |