diff options
author | Fu, Siyuan <siyuan.fu@intel.com> | 2014-09-18 11:44:36 +0000 |
---|---|---|
committer | sfu5 <sfu5@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-09-18 11:44:36 +0000 |
commit | ae97201c55603b69289c5d2349238ea97b2cd35e (patch) | |
tree | a30a58e3430a7dbb364ae483b9c92cc12a61439c /NetworkPkg/UefiPxeBcDxe/PxeBcBoot.c | |
parent | 44833d441beec53e8eaf5acb7d26c018f704247b (diff) | |
download | edk2-platforms-ae97201c55603b69289c5d2349238ea97b2cd35e.tar.xz |
1. Update PXE driver to support PXEv6 boot cross subnet.
2. Update IP6 driver to use previous configured prefix length if a pre-exist IP6 address with unspecified prefix length.
3. Add NULL check for Dhcp protocol pointer before it decline the address in Ip6ConfigSetStatefulAddrCallback() function.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Fu, Siyuan <siyuan.fu@intel.com>
Reviewed-By: Ye, Ting (ting.ye@intel.com)
Reviewed-By: Wu, Jiaxin <jiaxin.wu@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16131 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'NetworkPkg/UefiPxeBcDxe/PxeBcBoot.c')
-rw-r--r-- | NetworkPkg/UefiPxeBcDxe/PxeBcBoot.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/NetworkPkg/UefiPxeBcDxe/PxeBcBoot.c b/NetworkPkg/UefiPxeBcDxe/PxeBcBoot.c index 84031e40e0..253115308e 100644 --- a/NetworkPkg/UefiPxeBcDxe/PxeBcBoot.c +++ b/NetworkPkg/UefiPxeBcDxe/PxeBcBoot.c @@ -633,6 +633,14 @@ PxeBcDhcp6BootInfo ( }
//
+ // Set the station address to IP layer.
+ //
+ Status = PxeBcSetIp6Address (Private);
+ if (EFI_ERROR (Status)) {
+ return Status;
+ }
+
+ //
// Parse the value of boot file size.
//
if (Cache6->OptList[PXEBC_DHCP6_IDX_BOOT_FILE_PARAM] != NULL) {
|