1#!/bin/sh
2# Copyright (C) 2010 OpenWrt.org
3
4. /lib/functions/boot.sh
5
6set_ether_mac() {
7	mac=$(sed -n 's/^Serial.* 000000/02/p' /proc/cpuinfo)
8	ifconfig eth0 hw ether $mac
9}
10
11boot_hook_add preinit_main set_ether_mac
12
13