public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Wu, Hao A" <hao.a.wu@intel.com>
To: "Gao, Liming" <liming.gao@intel.com>,
	"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: "Wang, Jian J" <jian.j.wang@intel.com>
Subject: Re: [Patch 5/6] MdeModulePkg: Remove PCD gEfiMdeModulePkgTokenSpaceGuid.PcdTftpBlockSize
Date: Fri, 27 Sep 2019 00:35:30 +0000	[thread overview]
Message-ID: <B80AF82E9BFB8E4FBD8C89DA810C6A093C9364D7@SHSMSX104.ccr.corp.intel.com> (raw)
In-Reply-To: <1568689139-10548-6-git-send-email-liming.gao@intel.com>

> -----Original Message-----
> From: Gao, Liming
> Sent: Tuesday, September 17, 2019 10:59 AM
> To: devel@edk2.groups.io
> Cc: Wang, Jian J; Wu, Hao A
> Subject: [Patch 5/6] MdeModulePkg: Remove PCD
> gEfiMdeModulePkgTokenSpaceGuid.PcdTftpBlockSize
> 
> BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=2195
> This PCD has been moved to NetworkPkg.dec file.
> 
> Cc: Jian J Wang <jian.j.wang@intel.com>
> Cc: Hao A Wu <hao.a.wu@intel.com>
> Signed-off-by: Liming Gao <liming.gao@intel.com>
> ---
>  MdeModulePkg/MdeModulePkg.dec | 6 ------
>  MdeModulePkg/MdeModulePkg.uni | 6 ------
>  2 files changed, 12 deletions(-)
> 
> diff --git a/MdeModulePkg/MdeModulePkg.dec
> b/MdeModulePkg/MdeModulePkg.dec
> index a680641fe7..856b4b7080 100644
> --- a/MdeModulePkg/MdeModulePkg.dec
> +++ b/MdeModulePkg/MdeModulePkg.dec
> @@ -1177,12 +1177,6 @@
>    # @Expression 0x80000002 |
> (gEfiMdeModulePkgTokenSpaceGuid.PcdSerialFifoControl & 0xD8) == 0
> 
> gEfiMdeModulePkgTokenSpaceGuid.PcdSerialFifoControl|0x07|UINT8|0x00
> 020005
> 
> -  ## This setting can override the default TFTP block size. A value of 0
> computes
> -  # the default from MTU information. A non-zero value will be used as block
> size
> -  # in bytes.
> -  # @Prompt TFTP block size.
> -
> gEfiMdeModulePkgTokenSpaceGuid.PcdTftpBlockSize|0x0|UINT64|0x30001
> 026
> -
>    ## Maximum address that the DXE Core will allocate the
> EFI_SYSTEM_TABLE_POINTER
>    #  structure. The default value for this PCD is 0, which means that the DXE
> Core
>    #  will allocate the buffer from the EFI_SYSTEM_TABLE_POINTER structure
> on a 4MB
> diff --git a/MdeModulePkg/MdeModulePkg.uni
> b/MdeModulePkg/MdeModulePkg.uni
> index b4e8142199..a2c7a7ded3 100644
> --- a/MdeModulePkg/MdeModulePkg.uni
> +++ b/MdeModulePkg/MdeModulePkg.uni
> @@ -204,12 +204,6 @@
>                                                                                        "BIT7..BIT6 - Reserved.  Must be
> 0.<BR>\n"
>                                                                                        "Default is to enable and clear all
> FIFOs.<BR>"
> 
> -#string
> STR_gEfiMdeModulePkgTokenSpaceGuid_PcdTftpBlockSize_PROMPT
> #language en-US "TFTP block size"
> -
> -#string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdTftpBlockSize_HELP
> #language en-US "This setting can override the default TFTP block size. A
> value of 0 computes "
> -                                                                                  "the default from MTU information.
> A non-zero value will be used as block size "
> -                                                                                  "in bytes."
> -


Reviewed-by: Hao A Wu <hao.a.wu@intel.com>

Best Regards,
Hao Wu


>  #string
> STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxEfiSystemTablePointerAd
> dress_PROMPT  #language en-US "Maximum Efi System Table Pointer
> address"
> 
>  #string
> STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxEfiSystemTablePointerAd
> dress_HELP  #language en-US "Maximum address that the DXE Core will
> allocate the EFI_SYSTEM_TABLE_POINTER structure. The default value for
> this PCD is 0, which means that the DXE Core will allocate the buffer from the
> EFI_SYSTEM_TABLE_POINTER structure on a 4MB boundary as close to the
> top of memory as feasible.  If this PCD is set to a value other than 0, then the
> DXE Core will first attempt to allocate the EFI_SYSTEM_TABLE_POINTER
> structure on a 4MB boundary below the address specified by this PCD, and if
> that allocation fails, retry the allocation on a 4MB boundary as close to the
> top of memory as feasible."
> --
> 2.13.0.windows.1


  reply	other threads:[~2019-09-27  0:35 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-17  2:58 [Patch 0/6] Clean up NetworkPkg Liming Gao
2019-09-17  2:58 ` [Patch 1/6] NetworkPkg: Move network related header files from MdeModulePkg to NetworkPkg Liming Gao
2019-09-17  2:58 ` [Patch 2/6] MdeModulePkg: Remove network related guid definitions from MdeModulePkg.dec Liming Gao
2019-09-17  3:02   ` [edk2-devel] " Wu, Hao A
2019-09-17  2:58 ` [Patch 3/6] NetworkPkg: Add PcdTftpBlockSize in NetworkPkg.dec Liming Gao
2019-09-17  2:58 ` [Patch 4/6] NetworkPkg UefiPxeBcDxe: Consume PcdTftpBlockSize defined " Liming Gao
2019-09-17  2:58 ` [Patch 5/6] MdeModulePkg: Remove PCD gEfiMdeModulePkgTokenSpaceGuid.PcdTftpBlockSize Liming Gao
2019-09-27  0:35   ` Wu, Hao A [this message]
2019-09-17  2:58 ` [Patch 6/6] NetworkPkg: Remove unnecessary MdeModulePkg/MdeModulePkg.dec dependency in INF Liming Gao
2019-09-17  3:15 ` [edk2-devel] [Patch 0/6] Clean up NetworkPkg Siyuan, Fu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=B80AF82E9BFB8E4FBD8C89DA810C6A093C9364D7@SHSMSX104.ccr.corp.intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox