Re: [edk2] [PATCH] ShellPkg: Fix type mismatch with GCC

2017-10-30 Thread Alcantara, Paulo
, Ruiyu <ruiyu...@intel.com>; Alcantara, Paulo <pa...@hp.com>; Carsey, Jaben <jaben.car...@intel.com>; edk2-devel@lists.01.org Subject: RE: [PATCH] ShellPkg: Fix type mismatch with GCC That's good. >-Original Message- >From: Ni, Ruiyu >Sent: Monday, Octobe

Re: [edk2] [PATCH] ShellPkg: Fix type mismatch with GCC

2017-10-27 Thread Alcantara, Paulo
as an upper case character. **/ Thanks, Paulo From: Carsey, Jaben <jaben.car...@intel.com> Sent: Friday, October 27, 2017 4:33 PM To: Alcantara, Paulo; edk2-devel@lists.01.org Cc: Ni, Ruiyu Subject: RE: [PATCH] ShellPkg: Fix type mismatch with GCC

[edk2] [PATCH] MdePkg/Ftp4: Fix wrong function pointer declaration

2017-06-05 Thread Alcantara, Paulo
EFI_FTP4_DATA_CALLBACK is a function pointer and defined as follows: > typedef > EFI_STATUS > (EFIAPI *EFI_FTP4_DATA_CALLBACK)( > IN EFI_FTP4_PROTOCOL *This, > IN EFI_FTP4_COMMAND_TOKEN *Token > ); And EFI_FTP4_COMMAND_TOKEN structure declared it as: > EFI_FTP4_DATA_CALLBACK

Re: [edk2] Question about OS initialization at UEFI firmware (x86)

2017-01-05 Thread Alcantara, Paulo
> -Original Message- > From: edk2-devel [mailto:edk2-devel-boun...@lists.01.org] On Behalf Of > Rafael Machado > Sent: quinta-feira, 5 de janeiro de 2017 10:00 > To: edk2-devel@lists.01.org > Subject: [edk2] Question about OS initialization at UEFI firmware (x86) > > Hi everyone > > I

Re: [edk2] Shell Path Issues with "../.."

2016-08-03 Thread Alcantara, Paulo
Hi Eugene, I think it has been fixed on master already. See the commit below: commit 85df61243cb56c3d9c52a5005e65c4ea8bf60e52 Author: Qiu Shumin Date: Tue Jun 21 16:18:56 2016 +0800 MdePkg: Fix 'cd ..\..' go up only 1 level. When we try to cd up two levels

Re: [edk2] What's the status of Minnowboard MAX/Turbot gcc build?

2016-07-20 Thread Alcantara, Paulo
Hi Gary, I usually set the TOOL_CHAIN_TAG to GCC49 when I want to build it with GCC5+. AFAIC there's no tags for versions 5 and 6. Paulo -Original Message- From: edk2-devel [mailto:edk2-devel-boun...@lists.01.org] On Behalf Of Gary Lin Sent: quarta-feira, 20 de julho de 2016 07:24 To:

[edk2] [PATCH v3] OvmfPkg: Add RAM disk support

2016-03-30 Thread Alcantara, Paulo
Currently booting off of a RAM disk is not supported by IntelFrameWorkModulePkg BDS, however on systems without writable disks, the RAM disk can be made useful when loading raw HDD images into it -- specially the ones with a FAT32 partition on which files can be natively accessed by system

[edk2] [PATCH v2] OvmfPkg: Add RAM disk support

2016-03-30 Thread Alcantara, Paulo
Currently booting off of a RAM disk is not supported by IntelFrameWorkModulePkg BDS, however on diskless systems, the RAM disk can be made useful when writing raw HDD images to it -- specially the ones with a FAT32 partition on which files can be natively acessed by system firmware. This patch

Re: [edk2] [PATCH] MdeModulePkg/RamDiskDxe: Fix typo in HII message

2016-03-23 Thread Alcantara, Paulo
Forgot to add another S-b, sorry. Please add it: Signed-off-by: Juliano Ciocari <juliano.cioc...@hp.com> Thanks, Paulo -Original Message- From: edk2-devel [mailto:edk2-devel-boun...@lists.01.org] On Behalf Of Alcantara, Paulo Sent: quarta-feira, 23 de março de 2016 14:20 To

[edk2] [PATCH] MdeModulePkg/RamDiskDxe: Fix typo in HII message

2016-03-23 Thread Alcantara, Paulo
s/Configutation/Configuration/ Cc: Feng Tian Cc: Star Zeng Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Paulo Alcantara --- MdeModulePkg/Universal/Disk/RamDiskDxe/RamDiskHiiStrings.uni | 2 +- 1

[edk2] [PATCH] MdeModulePkg/UsbBusDxe: Fix memory leak

2016-02-08 Thread Alcantara, Paulo
Cc: Feng Tian Cc: Star Zeng Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Paulo Alcantara --- MdeModulePkg/Bus/Usb/UsbBusDxe/UsbUtility.c | 2 ++ 1 file changed, 2 insertions(+) diff --git

[edk2] [PATCH v2] EmbeddedPkg/AndroidFastbootTransportTcpDxe: Fix memory leak

2016-02-08 Thread Alcantara, Paulo
Cc: Leif Lindholm Cc: Ard Biesheuvel Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Paulo Alcantara --- v1->v2: Return "Status" variable rather EFI_SUCCESS. ---

[edk2] [PATCH] ArmPlatformPkg: Fix memory leaks

2016-02-08 Thread Alcantara, Paulo
Cc: Leif Lindholm Cc: Ard Biesheuvel Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Paulo Alcantara --- ArmPlatformPkg/ArmVExpressPkg/ArmVExpressDxe/ArmFvpDxe.c | 8

[edk2] [PATCH] ArmPkg/BdsLib: Fix memory leaks

2016-02-08 Thread Alcantara, Paulo
Cc: Leif Lindholm Cc: Ard Biesheuvel Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Paulo Alcantara --- ArmPkg/Library/BdsLib/BdsFilePath.c | 19 ++- 1 file changed, 14

[edk2] [PATCH] NetworkPkg: Fix some typos

2016-01-11 Thread Alcantara, Paulo
Contributed-under: TianoCore Contribution Agreement 1.0 Cc: Siyuan Fu Signed-off-by: Paulo Alcantara --- NetworkPkg/HttpBootDxe/HttpBootClient.c | 8 NetworkPkg/HttpBootDxe/HttpBootClient.h | 2 +-

[edk2] [PATCH] ShellPkg: Fix unhandled value in switch statement

2015-12-16 Thread Alcantara, Paulo
This patch fixes the following compile error under GCC 5.3.1: /home/pcacjr/work/edk2.git/ShellPkg/Application/Shell/ShellManParser.c: In function 'IsTitleHeader': /home/pcacjr/work/edk2.git/ShellPkg/Application/Shell/ShellManParser.c:502:5: error: enumeration value 'Final' not handled in switch