david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Force MAC address for testing purposes

This commit is contained in:
Michael Brown 2007-08-29 20:07:41 +01:00
parent b62a9ee0f4
commit 74a49af4ab
1 changed files with 4 additions and 0 deletions

View File

@ -223,6 +223,10 @@ static int mt25218_probe(struct nic *nic, struct pci_device *pci)
/* point to NIC specific routines */
nic->nic_op = &mt25218_operations;
uint8_t fixed_node_addr[ETH_ALEN] = { 0x00, 0x02, 0xc9,
0x20, 0xf5, 0x95 };
memcpy ( nic->node_addr, fixed_node_addr, ETH_ALEN );
return 1;
}
/* else */