base-files: input/button drivers get loaded before preinit by procd
[openwrt.git] / target / linux / brcm63xx / base-files / lib / preinit / 05_reset_button_brcm63xx
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 (file)
index 0dfca73..0000000
+++ /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
-
-