13 lines
153 B
Bash
Executable File
13 lines
153 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
#
|
|
|
|
START=11
|
|
STOP=97
|
|
|
|
boot() {
|
|
IFACE=eth0
|
|
read MAC </sys/class/net/$IFACE/address
|
|
echo $IFACE $MAC
|
|
fw_setenv ethaddr $MAC
|
|
}
|