diff options
author | jogo <jogo@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-10-08 09:59:44 +0000 |
---|---|---|
committer | jogo <jogo@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-10-08 09:59:44 +0000 |
commit | 237a13773fe830acccacf890c9bab6f2ef9316fc (patch) | |
tree | ca05eede355a26b7ef5801acc77d20d0b8f1393d /target/linux/brcm63xx | |
parent | 04e21aac75ee7c8c6db51d54be42c02918769450 (diff) |
bcm63xx: fix entering failsafe through button
gpio_keys_polled needs to be loaded in preinit for buttons to work for
entering failsafe.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33653 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx')
-rw-r--r-- | target/linux/brcm63xx/base-files/lib/preinit/05_reset_button_brcm63xx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/base-files/lib/preinit/05_reset_button_brcm63xx b/target/linux/brcm63xx/base-files/lib/preinit/05_reset_button_brcm63xx index f33825f96..f6bfbdec3 100644 --- a/target/linux/brcm63xx/base-files/lib/preinit/05_reset_button_brcm63xx +++ b/target/linux/brcm63xx/base-files/lib/preinit/05_reset_button_brcm63xx @@ -8,6 +8,7 @@ enable_reset_button() { insmod input-polldev insmod gpio_buttons insmod button-hotplug + insmod gpio_keys_polled fi } |