Skip to content

Commit

Permalink
package/kernel: create packages for the LED Timer/Default ON triggers
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31106 3c298f89-4303-0410-b956-a3cf2f4a3e73
  • Loading branch information
juhosg committed Mar 27, 2012
1 parent 3f4f47d commit 74d7876
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions package/kernel/modules/leds.mk
Expand Up @@ -183,3 +183,34 @@ define KernelPackage/ledtrig-usbdev/description
endef

$(eval $(call KernelPackage,ledtrig-usbdev))


define KernelPackage/ledtrig-default-on
SUBMENU:=$(LEDS_MENU)
TITLE:=LED Default ON Trigger
KCONFIG:=CONFIG_LEDS_TRIGGER_DEFAULT_ON
FILES:=$(LINUX_DIR)/drivers/leds/ledtrig-default-on.ko
AUTOLOAD:=$(call AutoLoad,50,ledtrig-default-on)
endef

define KernelPackage/ledtrig-default-on/description
Kernel module that allows LEDs to be initialised in the ON state.
endef

$(eval $(call KernelPackage,ledtrig-default-on))


define KernelPackage/ledtrig-timer
SUBMENU:=$(LEDS_MENU)
TITLE:=LED Timer Trigger
KCONFIG:=CONFIG_LEDS_TRIGGER_TIMER
FILES:=$(LINUX_DIR)/drivers/leds/ledtrig-timer.ko
AUTOLOAD:=$(call AutoLoad,50,ledtrig-timer)
endef

define KernelPackage/ledtrig-timer/description
Kernel module that allows LEDs to be controlled by a programmable timer
via sysfs.
endef

$(eval $(call KernelPackage,ledtrig-timer))

0 comments on commit 74d7876

Please sign in to comment.