diff options
| author | Michael Brown | 2007-07-03 16:57:32 +0200 |
|---|---|---|
| committer | Michael Brown | 2007-07-03 16:57:32 +0200 |
| commit | 30a442aef8ef1431be21e53e2265bfeb85403b60 (patch) | |
| tree | 34ffdb4576a1b7e555de1217f4a579f41b31596f /src/interface/pxe | |
| parent | Work around Etherboot 5.4 bug when multiple packets are received. (diff) | |
| download | ipxe-30a442aef8ef1431be21e53e2265bfeb85403b60.tar.gz ipxe-30a442aef8ef1431be21e53e2265bfeb85403b60.tar.xz ipxe-30a442aef8ef1431be21e53e2265bfeb85403b60.zip | |
Report our interface type as "gPXE" to avoid working around Etherboot
5.4 bugs when driving ourselves via UNDI.
Diffstat (limited to 'src/interface/pxe')
| -rw-r--r-- | src/interface/pxe/pxe_undi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interface/pxe/pxe_undi.c b/src/interface/pxe/pxe_undi.c index 468dafc49..33de81174 100644 --- a/src/interface/pxe/pxe_undi.c +++ b/src/interface/pxe/pxe_undi.c @@ -480,7 +480,7 @@ PXENV_EXIT_t pxenv_undi_get_iface_info ( struct s_PXENV_UNDI_GET_IFACE_INFO * Most PXE stacks seem to take this approach. */ snprintf ( ( char * ) undi_get_iface_info->IfaceType, - sizeof ( undi_get_iface_info->IfaceType ), "Etherboot" ); + sizeof ( undi_get_iface_info->IfaceType ), "gPXE" ); undi_get_iface_info->LinkSpeed = 10000000; /* 10 Mbps */ undi_get_iface_info->ServiceFlags = 0; memset ( undi_get_iface_info->Reserved, 0, |
