From 2bc31048652d086641cb541309832d43e77aafa4 Mon Sep 17 00:00:00 2001 From: cshore Date: Sun, 30 May 2010 01:33:09 +0000 Subject: brcm63xx: Added preinit reset button module loading for devices known to support it and for which /lib/brcm63xx.sh has the definitions (currently only 96348GW - Tecom 6x00) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21628 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../base-files/lib/preinit/05_reset_button_brcm63xx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 target/linux/brcm63xx/base-files/lib/preinit/05_reset_button_brcm63xx (limited to 'target/linux/brcm63xx/base-files/lib/preinit') 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 new file mode 100644 index 000000000..f33825f96 --- /dev/null +++ b/target/linux/brcm63xx/base-files/lib/preinit/05_reset_button_brcm63xx @@ -0,0 +1,16 @@ +#!/bin/sh + +. /lib/brcm63xx.sh + +enable_reset_button() { + if [ "$brcm63xx_has_reset_button" = "true" ]; then + insmod input-core + insmod input-polldev + insmod gpio_buttons + insmod button-hotplug + fi +} + +boot_hook_add preinit_main enable_reset_button + + -- cgit v1.2.3