diff options
| author | Michael Brown | 2009-06-23 20:26:07 +0200 |
|---|---|---|
| committer | Michael Brown | 2009-06-23 20:26:07 +0200 |
| commit | 198ae0a1313b1dd8297452e761ee8788fb0ba01e (patch) | |
| tree | 4da3c086ca1261c11921057760b92a94db1eb629 /src | |
| parent | [e1000] Ensure descriptor is fully written before sending packet (diff) | |
| download | ipxe-198ae0a1313b1dd8297452e761ee8788fb0ba01e.tar.gz ipxe-198ae0a1313b1dd8297452e761ee8788fb0ba01e.tar.xz ipxe-198ae0a1313b1dd8297452e761ee8788fb0ba01e.zip | |
[undi] Include PXENV_GET_IFACE_INFO's ServiceFlags in debug output
Diffstat (limited to 'src')
| -rw-r--r-- | src/arch/i386/drivers/net/undinet.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/arch/i386/drivers/net/undinet.c b/src/arch/i386/drivers/net/undinet.c index 79ac01bbb..6c28b2473 100644 --- a/src/arch/i386/drivers/net/undinet.c +++ b/src/arch/i386/drivers/net/undinet.c @@ -705,8 +705,9 @@ int undinet_probe ( struct undi_device *undi ) { &undi_iface, sizeof ( undi_iface ) ) ) != 0 ) goto err_undi_get_iface_info; - DBGC ( undinic, "UNDINIC %p has type %s and link speed %d\n", - undinic, undi_iface.IfaceType, undi_iface.LinkSpeed ); + DBGC ( undinic, "UNDINIC %p has type %s, speed %d, flags %08x\n", + undinic, undi_iface.IfaceType, undi_iface.LinkSpeed, + undi_iface.ServiceFlags ); if ( strncmp ( ( ( char * ) undi_iface.IfaceType ), "Etherboot", sizeof ( undi_iface.IfaceType ) ) == 0 ) { DBGC ( undinic, "UNDINIC %p Etherboot 5.4 workaround enabled\n", |
