summaryrefslogtreecommitdiff
path: root/target/linux/brcm63xx/base-files/lib
diff options
context:
space:
mode:
authorblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-06-21 16:53:47 +0000
committerblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-06-21 16:53:47 +0000
commita8dc6fa0f5bcab8284bf06b1ec8cadea6d22a7ec (patch)
treec90f9fb96df05282fbb1cc7486640864f13fe182 /target/linux/brcm63xx/base-files/lib
parent3fec0233a8e5b02f4fb6b4c646a1dc67aa8542a3 (diff)
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')
-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 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
-
-