mirror of https://github.com/acidanthera/audk.git
Add Copyright notices and comments for Red Hat contributor.
Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Fu Siyuan <siyuan.fu@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@14355 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
3d2367a2a7
commit
e3cf3c2048
|
@ -1,7 +1,8 @@
|
||||||
/** @file
|
/** @file
|
||||||
Support for PxeBc dhcp functions.
|
Support for PxeBc dhcp functions.
|
||||||
|
|
||||||
Copyright (c) 2007 - 2013, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2013, Red Hat, Inc.
|
||||||
|
Copyright (c) 2007 - 2012, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -1537,10 +1538,13 @@ PxeBcSelectBootPrompt (
|
||||||
|
|
||||||
VendorOpt = &Packet->PxeVendorOption;
|
VendorOpt = &Packet->PxeVendorOption;
|
||||||
//
|
//
|
||||||
// According to the PXE specification 2.1, Table 2-1 PXE DHCP Options,
|
// According to the PXE specification 2.1, Table 2-1 PXE DHCP Options (Full
|
||||||
// we must not consider a boot prompt or boot menu if all of the following hold:
|
// List), we must not consider a boot prompt or boot menu if all of the
|
||||||
// - the PXE_DISCOVERY_CONTROL tag(6) is present inside the Vendor Options(43), and has bit 3 set
|
// following hold:
|
||||||
// - a boot file name has been presented in the initial DHCP or ProxyDHCP offer packet.
|
// - the PXE_DISCOVERY_CONTROL PXE tag is present inside the Vendor Options
|
||||||
|
// (=43) DHCP tag, and
|
||||||
|
// - the PXE_DISCOVERY_CONTROL PXE tag has bit 3 set, and
|
||||||
|
// - a boot file name has been presented with DHCP option 67.
|
||||||
//
|
//
|
||||||
if (IS_DISABLE_PROMPT_MENU (VendorOpt->DiscoverCtrl) &&
|
if (IS_DISABLE_PROMPT_MENU (VendorOpt->DiscoverCtrl) &&
|
||||||
Packet->Dhcp4Option[PXEBC_DHCP4_TAG_INDEX_BOOTFILE] != NULL) {
|
Packet->Dhcp4Option[PXEBC_DHCP4_TAG_INDEX_BOOTFILE] != NULL) {
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
/** @file
|
/** @file
|
||||||
Dhcp and Discover routines for PxeBc.
|
Dhcp and Discover routines for PxeBc.
|
||||||
|
|
||||||
Copyright (c) 2007 - 2013, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2013, Red Hat, Inc.
|
||||||
|
Copyright (c) 2007 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
|
Loading…
Reference in New Issue