From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 0400421954092 for ; Mon, 24 Apr 2017 22:17:56 -0700 (PDT) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga105.fm.intel.com with ESMTP; 24 Apr 2017 22:17:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,247,1488873600"; d="scan'208";a="1123147778" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by orsmga001.jf.intel.com with ESMTP; 24 Apr 2017 22:17:56 -0700 Received: from fmsmsx157.amr.corp.intel.com (10.18.116.73) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.319.2; Mon, 24 Apr 2017 22:17:55 -0700 Received: from shsmsx152.ccr.corp.intel.com (10.239.6.52) by FMSMSX157.amr.corp.intel.com (10.18.116.73) with Microsoft SMTP Server (TLS) id 14.3.319.2; Mon, 24 Apr 2017 22:17:55 -0700 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.178]) by SHSMSX152.ccr.corp.intel.com ([169.254.6.217]) with mapi id 14.03.0319.002; Tue, 25 Apr 2017 13:17:53 +0800 From: "Ni, Ruiyu" To: "Ni, Ruiyu" , "edk2-devel@lists.01.org" CC: "Wang, Fan" , "Wu, Jiaxin" Thread-Topic: [edk2] [PATCH] MdeModulePKg/BDS: Build meaningful description for Wi-Fi boot option Thread-Index: AQHSuYWb5w/O0liS6UKstrM2fHSTmaHVk37Q Date: Tue, 25 Apr 2017 05:17:53 +0000 Message-ID: <734D49CCEBEEF84792F5B80ED585239D5B9392D5@SHSMSX104.ccr.corp.intel.com> References: <20170420032321.61692-1-ruiyu.ni@intel.com> In-Reply-To: <20170420032321.61692-1-ruiyu.ni@intel.com> Accept-Language: en-US, zh-CN X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [PATCH] MdeModulePKg/BDS: Build meaningful description for Wi-Fi boot option X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Apr 2017 05:17:57 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Fan, Jiaxin, Any comments? Thanks/Ray > -----Original Message----- > From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of > Ruiyu Ni > Sent: Thursday, April 20, 2017 11:23 AM > To: edk2-devel@lists.01.org > Cc: Wang, Fan ; Wu, Jiaxin > Subject: [edk2] [PATCH] MdeModulePKg/BDS: Build meaningful description > for Wi-Fi boot option >=20 > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Ruiyu Ni > Cc: Fan Wang > Cc: Jiaxin Wu > --- > .../Library/UefiBootManagerLib/BmBootDescription.c | 28 > ++++++++++++++++++---- > 1 file changed, 23 insertions(+), 5 deletions(-) >=20 > diff --git > a/MdeModulePkg/Library/UefiBootManagerLib/BmBootDescription.c > b/MdeModulePkg/Library/UefiBootManagerLib/BmBootDescription.c > index 501a0cc255..6e69a1540a 100644 > --- a/MdeModulePkg/Library/UefiBootManagerLib/BmBootDescription.c > +++ b/MdeModulePkg/Library/UefiBootManagerLib/BmBootDescription.c > @@ -382,13 +382,13 @@ BmGetNetworkDescription ( >=20 > // > // The PXE device path is like: > - // ....../Mac(...)[/Vlan(...)] > - // ....../Mac(...)[/Vlan(...)]/IPv4(...) > - // ....../Mac(...)[/Vlan(...)]/IPv6(...) > + // ....../Mac(...)[/Vlan(...)][/Wi-Fi(...)] > + // ....../Mac(...)[/Vlan(...)][/Wi-Fi(...)]/IPv4(...) > + // ....../Mac(...)[/Vlan(...)][/Wi-Fi(...)]/IPv6(...) > // > // The HTTP device path is like: > - // ....../Mac(...)[/Vlan(...)]/IPv4(...)/Uri(...) > - // ....../Mac(...)[/Vlan(...)]/IPv6(...)/Uri(...) > + // ....../Mac(...)[/Vlan(...)][/Wi-Fi(...)]/IPv4(...)/Uri(...) > + // ....../Mac(...)[/Vlan(...)][/Wi-Fi(...)]/IPv6(...)/Uri(...) > // > while (!IsDevicePathEnd (DevicePath) && > ((DevicePathType (DevicePath) !=3D MESSAGING_DEVICE_PATH) || @@= - > 404,6 +404,9 @@ BmGetNetworkDescription ( > Mac =3D (MAC_ADDR_DEVICE_PATH *) DevicePath; > DevicePath =3D NextDevicePathNode (DevicePath); >=20 > + // > + // Locate the optional Vlan node > + // > if ((DevicePathType (DevicePath) =3D=3D MESSAGING_DEVICE_PATH) && > (DevicePathSubType (DevicePath) =3D=3D MSG_VLAN_DP) > ) { > @@ -413,6 +416,18 @@ BmGetNetworkDescription ( > Vlan =3D NULL; > } >=20 > + // > + // Skip the optional Wi-Fi node > + // > + if ((DevicePathType (DevicePath) =3D=3D MESSAGING_DEVICE_PATH) && > + (DevicePathSubType (DevicePath) =3D=3D MSG_WIFI_DP) > + ) { > + DevicePath =3D NextDevicePathNode (DevicePath); } > + > + // > + // Locate the IP node > + // > if ((DevicePathType (DevicePath) =3D=3D MESSAGING_DEVICE_PATH) && > ((DevicePathSubType (DevicePath) =3D=3D MSG_IPv4_DP) || > (DevicePathSubType (DevicePath) =3D=3D MSG_IPv6_DP)) @@ -423,6 +4= 38,9 > @@ BmGetNetworkDescription ( > Ip =3D NULL; > } >=20 > + // > + // Locate the URI node > + // > if ((DevicePathType (DevicePath) =3D=3D MESSAGING_DEVICE_PATH) && > (DevicePathSubType (DevicePath) =3D=3D MSG_URI_DP) > ) { > -- > 2.12.2.windows.2 >=20 > _______________________________________________ > edk2-devel mailing list > edk2-devel@lists.01.org > https://lists.01.org/mailman/listinfo/edk2-devel