From: Jonas Gorski Date: Mon, 8 Oct 2012 09:59:44 +0000 (+0000) Subject: bcm63xx: fix entering failsafe through button X-Git-Tag: reboot~12713 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=f16ea6be3f8b21111cf1c965390229d07d1aecf4;p=openwrt%2Fopenwrt.git 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 --- 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 }