diff options
author | John Crispin <blogic@openwrt.org> | 2013-06-21 16:53:47 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2013-06-21 16:53:47 +0000 |
commit | 623e6025a8d0956b268230e527a76d358764c808 (patch) | |
tree | c90f9fb96df05282fbb1cc7486640864f13fe182 /target/linux/brcm63xx/base-files/lib/preinit | |
parent | 02f1075b0a09647702d4e4d25d617d65c8da912c (diff) | |
download | upstream-623e6025a8d0956b268230e527a76d358764c808.tar.gz upstream-623e6025a8d0956b268230e527a76d358764c808.tar.bz2 upstream-623e6025a8d0956b268230e527a76d358764c808.zip |
base-files: input/button drivers get loaded before preinit by procd
Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37000 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx/base-files/lib/preinit')
-rw-r--r-- | target/linux/brcm63xx/base-files/lib/preinit/05_reset_button_brcm63xx | 15 |
1 files changed, 0 insertions, 15 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 deleted file mode 100644 index 0dfca73c22..0000000000 --- a/target/linux/brcm63xx/base-files/lib/preinit/05_reset_button_brcm63xx +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -enable_reset_button() { - if [ "$brcm63xx_has_reset_button" = "true" ]; then - insmod input-core - insmod input-polldev - insmod gpio_buttons - insmod button-hotplug - insmod gpio_keys_polled - fi -} - -boot_hook_add preinit_main enable_reset_button - - |