diff options
author | Jonas Gorski <jogo@openwrt.org> | 2012-10-08 09:59:44 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2012-10-08 09:59:44 +0000 |
commit | f16ea6be3f8b21111cf1c965390229d07d1aecf4 (patch) | |
tree | 2afa1d089c1f9a569607e6a314f34323223c21e0 /target/linux/brcm63xx/base-files/lib | |
parent | e5bb1a1bc7d4ccc5bab9bc759cb3f9665e36194c (diff) | |
download | upstream-f16ea6be3f8b21111cf1c965390229d07d1aecf4.tar.gz upstream-f16ea6be3f8b21111cf1c965390229d07d1aecf4.tar.bz2 upstream-f16ea6be3f8b21111cf1c965390229d07d1aecf4.zip |
bcm63xx: fix entering failsafe through button
gpio_keys_polled needs to be loaded in preinit for buttons to work for
entering failsafe.
SVN-Revision: 33653
Diffstat (limited to 'target/linux/brcm63xx/base-files/lib')
-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 f33825f965..f6bfbdec30 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 } |