aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGene Cumm <gene.cumm@gmail.com>2015-05-25 07:53:59 -0400
committerGene Cumm <gene.cumm@gmail.com>2015-05-25 07:53:59 -0400
commitb22e1cd76f71536939ae489884f5f332274918a6 (patch)
tree73d750843ef3b294a13e360c383d860ac3ab4212
parentf7eb18ad7802b6602fac23fd0cb171c7272a6edf (diff)
downloadsyslinux-b22e1cd76f71536939ae489884f5f332274918a6.tar.gz
syslinux-b22e1cd76f71536939ae489884f5f332274918a6.tar.xz
syslinux-b22e1cd76f71536939ae489884f5f332274918a6.zip
efi/pxe: Amend comments to clarify BIOS.
Signed-off-by: Gene Cumm <gene.cumm@gmail.com>
-rw-r--r--efi/pxe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/efi/pxe.c b/efi/pxe.c
index 0c9fb06a..38f0018e 100644
--- a/efi/pxe.c
+++ b/efi/pxe.c
@@ -120,7 +120,7 @@ void net_parse_dhcp(void)
embedded_dhcp_options.bdhcp_len, 0);
/*
- * Get the DHCP client identifiers (query info 1)
+ * Get the DHCP client identifiers (BIOS/PXE query info 1)
*/
Print(L"Getting cached packet ");
parse_dhcp(&mode->DhcpDiscover.Dhcpv4, pkt_len);
@@ -137,7 +137,7 @@ void net_parse_dhcp(void)
/*
* Get the BOOTP/DHCP packet that brought us file (and an IP
- * address). This lives in the DHCPACK packet (query info 2)
+ * address). This lives in the DHCPACK packet (BIOS/PXE query info 2)
*/
parse_dhcp(&mode->DhcpAck.Dhcpv4, pkt_len);
/*
@@ -152,7 +152,7 @@ void net_parse_dhcp(void)
/*
* Get the boot file and other info. This lives in the CACHED_REPLY
- * packet (query info 3)
+ * packet (BIOS/PXE query info 3)
*/
parse_dhcp(&mode->PxeReply.Dhcpv4, pkt_len);
Print(L"\n");