summaryrefslogtreecommitdiff
path: root/target/linux/brcm63xx/base-files
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2013-06-21 16:53:47 +0000
committerJohn Crispin <john@openwrt.org>2013-06-21 16:53:47 +0000
commit67f5f188b1f07726965e5c430a7657d836d67594 (patch)
tree862ac6283ce26038604ee9a34e2fbc8e7f6a5296 /target/linux/brcm63xx/base-files
parente6ef318802935389283e3614df31ca6d36a5f7bf (diff)
downloadmtk-20170518-67f5f188b1f07726965e5c430a7657d836d67594.zip
mtk-20170518-67f5f188b1f07726965e5c430a7657d836d67594.tar.gz
mtk-20170518-67f5f188b1f07726965e5c430a7657d836d67594.tar.bz2
base-files: input/button drivers get loaded before preinit by procd
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37000
Diffstat (limited to 'target/linux/brcm63xx/base-files')
-rw-r--r--target/linux/brcm63xx/base-files/lib/preinit/05_reset_button_brcm63xx15
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 0dfca73..0000000
--- 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
-
-