9e5d09fd1331fedf2f8bd7cc5056b6c1c3fd9e78
[15.05/openwrt.git] / target / linux / ep93xx / base-files / lib / preinit / 05_set_ether_mac_rdc
1 #!/bin/sh
2 # Copyright (C) 2010 OpenWrt.org
3
4 . /lib/functions.sh
5
6 set_ether_mac() {
7         mac=$(sed -n 's/^Serial.* 000000/02/p' /proc/cpuinfo)
8         ifconfig eth0 hw ether $mac
9 }
10
11 boot_hook_add preinit_main set_ether_mac
12