diff options
author | Michael Brown <mcb30@etherboot.org> | 2007-07-03 15:57:32 +0100 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2007-07-03 15:57:32 +0100 |
commit | 30a442aef8ef1431be21e53e2265bfeb85403b60 (patch) | |
tree | 34ffdb4576a1b7e555de1217f4a579f41b31596f /src/interface | |
parent | 2dc8ed1eb8015c2810fb01f524c8e8c46751ee9b (diff) | |
download | ipxe-30a442aef8ef1431be21e53e2265bfeb85403b60.tar.gz |
Report our interface type as "gPXE" to avoid working around Etherboot
5.4 bugs when driving ourselves via UNDI.
Diffstat (limited to 'src/interface')
-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 468dafc4..33de8117 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, |