| 1234567891011121314151617181920212223242526 |
- #!/bin/sh
- set_preinit_iface() {
- ifname=eth1
- . /lib/brcm63xx.sh
- ifconfig $ifname 0.0.0.0 up
- }
- check_module () {
- module="$1"; shift; params="$*"
- insmod "$module" "$params"
- sleep 1
- grep "^$module" /proc/modules
- return $?
- }
- init_iface() {
- insmod switch-core
- check_module switch-robo || check_module switch-adm || rmmod switch-core
- }
- boot_hook_add preinit_main set_preinit_iface
- boot_hook_add preinit_main init_iface
|