From: Michael Brown Date: Tue, 5 Dec 2006 17:56:13 +0000 (+0000) Subject: The VPD engine is broken and can't actually handle placing VPD X-Git-Tag: v0.9.3~958 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a128b33b8b99b0afca2b6c71b96e5a29c4c0f586;p=thirdparty%2Fipxe.git The VPD engine is broken and can't actually handle placing VPD anywhere other than offset 0 within the EEPROM, so we have to put our settings at 0x100 instead. --- diff --git a/src/drivers/net/etherfabric.c b/src/drivers/net/etherfabric.c index 2d978d061..9040f0cf0 100644 --- a/src/drivers/net/etherfabric.c +++ b/src/drivers/net/etherfabric.c @@ -2332,7 +2332,7 @@ static void falcon_init_spi ( struct efab_nic *efab ) { #define FALCON_MAC_ADDRESS_OFFSET(port) ( 0x310 + 0x08 * (port) ) static struct nvo_fragment falcon_eeprom_fragments[] = { - { 0, 0x100 }, + { 0x100, 0x100 }, { 0, 0 } };