| 1234567891011121314151617 |
- #!/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
- insmod gpio_keys_polled
- fi
- }
- boot_hook_add preinit_main enable_reset_button
|