Re: [edk2] TianoCore Subversion down?

2015-07-26 Thread Jordan Justen
On 2015-07-25 19:59:10, Bruce Cran wrote: > On 7/24/15 5:40 PM, Jordan Justen wrote: > > Unfortunately, it looks like they are going to manage to get svn back > > up and running. ;) > > It looks like it's back: > http://sourceforge.net/blog/sourceforge-subversion-svn-service-online/ > > "SourceF

Re: [edk2] Temporary git repo - Re: TianoCore Subversion down?

2015-07-26 Thread Jordan Justen
On 2015-07-24 05:00:58, Laszlo Ersek wrote: > On 07/24/15 11:37, Zeng, Star wrote: > > I just pulled the edk2-svn-offline code and took a look. > > And I found Jordan had a commit for the attached patch which has > > been committed in SVN at 18031 and I also have git-svn r18031 in > > local. Is it

[edk2] [PATCH v2 1/6] ArmPkg: merge ArmGicV[23]Lib.h into ArmGicLib.h

2015-07-26 Thread Ard Biesheuvel
Before splitting off ArmGicArchLib and moving it out of ArmPkg/Drivers/ArmGic into ArmPkg/Library, make sure that the GIC specific declarations it depends on are not hidden away in local headers "GicV2/GicV2Lib.h" and "GicV3/GicV3Lib.h". So merge them with . This is entirely appropriate, since thi

[edk2] [PATCH v2 2/6] ArmPkg: split off ArmGicArchLib from ArmGicLib

2015-07-26 Thread Ard Biesheuvel
The current implementation of ArmGicGetSupportedArchRevision () that is used by all ARM platforms is entirely stateless (in order to support being executed from flash) so it needs to interrogate the hardware for the supported GIC revision upon each invocation. However, this statelessness is only n

[edk2] [PATCH v2 3/6] ArmPkg: copy ArmGicArchLib to ArmGicArchSecLib

2015-07-26 Thread Ard Biesheuvel
Clone ArmGicArchLib into a SEC phase specific ArmGicArchSecLib so that we can modify the former in a subsequent patch to cache the GIC revision in a global variable. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel Reviewed-by: Laszlo Ersek --- ArmPkg/Librar

[edk2] [PATCH v2 0/6] ArmPkg/ArmVirtPkg: GIC revision detection

2015-07-26 Thread Ard Biesheuvel
The current GIC revision detection code infers the GIC revision from the AA64PFR0_EL1.GIC feature bit that tells us whether the GIC system register interface is implemented in the hardware, and then proceeds to attempt and enable it. The library containing this code deliberately does not cache the

[edk2] [PATCH v2 6/6] ArmVirtPkg: implement DT-based ArmGicArchLib

2015-07-26 Thread Ard Biesheuvel
Since it is arguably incorrect to infer the GIC revision from CPU ID and GIC feature registers on platforms that describe the GIC in the device tree, this implements the library class ArmGicArchLib tailored for such platforms. The supported GIC revision is retrieved from the dynamic PCD that is se

[edk2] [PATCH v2 4/6] ArmPkg: cache detected revision in ArmGicArchLib

2015-07-26 Thread Ard Biesheuvel
Instead of inferring the GIC revision from the CPU id registers and the presence/availability of the system register interface upon each invocation, move the logic to a constructor and cache the result. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel Reviewed

[edk2] [PATCH v2 5/6] ArmVirtPkg: record GIC revision in dynamic PCD

2015-07-26 Thread Ard Biesheuvel
In order to allow a ArmGicArchLib to be implemented that returns the supported GIC revision based on the device tree, add handling to VirtFdtDxe to record the GIC revision at DT parsing time. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel Reviewed-by: Laszlo

Re: [edk2] TianoCore Subversion down?

2015-07-26 Thread Laszlo Ersek
On 07/26/15 10:23, Jordan Justen wrote: > On 2015-07-25 19:59:10, Bruce Cran wrote: >> On 7/24/15 5:40 PM, Jordan Justen wrote: >>> Unfortunately, it looks like they are going to manage to get svn back >>> up and running. ;) >> >> It looks like it's back: >> http://sourceforge.net/blog/sourceforge

Re: [edk2] [PATCH v2 0/6] ArmPkg/ArmVirtPkg: GIC revision detection

2015-07-26 Thread Ard Biesheuvel
On 26 July 2015 at 11:50, Laszlo Ersek wrote: > On 07/26/15 11:40, Ard Biesheuvel wrote: >> The current GIC revision detection code infers the GIC revision from >> the AA64PFR0_EL1.GIC feature bit that tells us whether the GIC system >> register interface is implemented in the hardware, and then p

Re: [edk2] [PATCH v2 0/6] ArmPkg/ArmVirtPkg: GIC revision detection

2015-07-26 Thread Laszlo Ersek
On 07/26/15 11:40, Ard Biesheuvel wrote: > The current GIC revision detection code infers the GIC revision from > the AA64PFR0_EL1.GIC feature bit that tells us whether the GIC system > register interface is implemented in the hardware, and then proceeds > to attempt and enable it. > > The library

Re: [edk2] [PATCH v2 5/6] ArmVirtPkg: record GIC revision in dynamic PCD

2015-07-26 Thread Ard Biesheuvel
On 26 July 2015 at 11:40, Ard Biesheuvel wrote: > In order to allow a ArmGicArchLib to be implemented that returns > the supported GIC revision based on the device tree, add handling > to VirtFdtDxe to record the GIC revision at DT parsing time. > > Contributed-under: TianoCore Contribution Agreem

Re: [edk2] [PATCH v2 0/6] ArmPkg/ArmVirtPkg: GIC revision detection

2015-07-26 Thread Leif Lindholm
On Sun, Jul 26, 2015 at 11:50:53AM +0200, Ard Biesheuvel wrote: > On 26 July 2015 at 11:50, Laszlo Ersek wrote: > > On 07/26/15 11:40, Ard Biesheuvel wrote: > >> The current GIC revision detection code infers the GIC revision from > >> the AA64PFR0_EL1.GIC feature bit that tells us whether the GIC

Re: [edk2] [PATCH v2 2/6] ArmPkg: split off ArmGicArchLib from ArmGicLib

2015-07-26 Thread Leif Lindholm
On Sun, Jul 26, 2015 at 11:40:11AM +0200, Ard Biesheuvel wrote: ... > diff --git a/ArmPkg/Library/ArmSmcLib/ArmSmcLib.inf > b/ArmPkg/Library/ArmGicArchLib/ArmGicArchLib.inf > similarity index 64% > copy from ArmPkg/Library/ArmSmcLib/ArmSmcLib.inf > copy to ArmPkg/Library/ArmGicArchLib/ArmGicArchLi

Re: [edk2] [PATCH v2 2/6] ArmPkg: split off ArmGicArchLib from ArmGicLib

2015-07-26 Thread Ard Biesheuvel
On 26 July 2015 at 13:00, Leif Lindholm wrote: > On Sun, Jul 26, 2015 at 11:40:11AM +0200, Ard Biesheuvel wrote: > ... >> diff --git a/ArmPkg/Library/ArmSmcLib/ArmSmcLib.inf >> b/ArmPkg/Library/ArmGicArchLib/ArmGicArchLib.inf >> similarity index 64% >> copy from ArmPkg/Library/ArmSmcLib/ArmSmcLib

Re: [edk2] [PATCH v2 0/6] ArmPkg/ArmVirtPkg: GIC revision detection

2015-07-26 Thread Ard Biesheuvel
On 26 July 2015 at 12:52, Leif Lindholm wrote: > On Sun, Jul 26, 2015 at 11:50:53AM +0200, Ard Biesheuvel wrote: >> On 26 July 2015 at 11:50, Laszlo Ersek wrote: >> > On 07/26/15 11:40, Ard Biesheuvel wrote: >> >> The current GIC revision detection code infers the GIC revision from >> >> the AA64

Re: [edk2] [PATCH v2 0/6] ArmPkg/ArmVirtPkg: GIC revision detection

2015-07-26 Thread Leif Lindholm
On Sun, Jul 26, 2015 at 01:08:20PM +0200, Ard Biesheuvel wrote: > > So ... had a look through, looks sane, have a couple of minor comments > > (will add inline). > > But what I don't have at home is a useful hardware platform to test > > this on. Has anyone else tested on 32-bit/64-bit hardware? >

Re: [edk2] [PATCH v2 0/6] ArmPkg/ArmVirtPkg: GIC revision detection

2015-07-26 Thread Ard Biesheuvel
On 26 July 2015 at 13:46, Leif Lindholm wrote: > On Sun, Jul 26, 2015 at 01:08:20PM +0200, Ard Biesheuvel wrote: >> > So ... had a look through, looks sane, have a couple of minor comments >> > (will add inline). >> > But what I don't have at home is a useful hardware platform to test >> > this on

Re: [edk2] [PATCH v2 0/6] ArmPkg/ArmVirtPkg: GIC revision detection

2015-07-26 Thread Ard Biesheuvel
On 26 July 2015 at 14:50, Ard Biesheuvel wrote: > On 26 July 2015 at 13:46, Leif Lindholm wrote: >> On Sun, Jul 26, 2015 at 01:08:20PM +0200, Ard Biesheuvel wrote: >>> > So ... had a look through, looks sane, have a couple of minor comments >>> > (will add inline). >>> > But what I don't have at

Re: [edk2] [PATCH 0/4] FFS/FV aligment optimization (was: [RFC] small C model and LLVM/clang support for AARCH64)

2015-07-26 Thread Ard Biesheuvel
On 22 July 2015 at 19:25, Ard Biesheuvel wrote: > On 22 July 2015 at 19:21, Ard Biesheuvel wrote: >> These patches have been split off from the series 'small C model and >> LLVM/clang support for AARCH64', primarily because >> - I found out there is a tiny code model for GCC which is even better

Re: [edk2] TianoCore Subversion down?

2015-07-26 Thread Daryl McDaniel
Thank you Jordan and Laszlo for all of the great work you put into this. Daryl -Original Message- From: edk2-devel [mailto:edk2-devel-boun...@lists.01.org] On Behalf Of Laszlo Ersek Sent: Sunday, July 26, 2015 2:43 AM To: Jordan Justen Cc: Bruce Cran ; edk2-devel@lists.01.org ; Blibbet ;

Re: [edk2] [PATCH] Vlv2DeviceRefCodePkg: don't redefine struct typedefs

2015-07-26 Thread Bruce Cran
On 7/16/15 8:39 AM, Bruce Cran wrote: I'm guessing this is because TortoiseGit uses MinGW, which from my experience has quite a few bugs like this. At least on my system running the same command in the "Git Bash" shell from https://git-scm.com/downloads works. Could you try that please? Hi Ti

[edk2] [PATCH] MdeModulePkg PiSmmIpl: Use AllocateZeroPool() for FullSmramRanges

2015-07-26 Thread Star Zeng
to instead of AllocatePool() to ensure the data is clean for the following consumption. Cc: Jiewen Yao Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng --- MdeModulePkg/Core/PiSmmCore/PiSmmIpl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --gi

Re: [edk2] [PATCH] MdeModulePkg PiSmmIpl: Use AllocateZeroPool() for FullSmramRanges

2015-07-26 Thread Yao, Jiewen
Reviewed-by: Yao, Jiewen -Original Message- From: Zeng, Star Sent: Monday, July 27, 2015 8:34 AM To: edk2-devel@lists.01.org Cc: Yao, Jiewen Subject: [PATCH] MdeModulePkg PiSmmIpl: Use AllocateZeroPool() for FullSmramRanges to instead of AllocatePool() to ensure the data is clean for t

Re: [edk2] [PATCH] MdeModulePkg Variable: Read MonotonicCount by ReadUnaligned64()

2015-07-26 Thread Yao, Jiewen
Reviewed-by: Yao, Jiewen -Original Message- From: edk2-devel [mailto:edk2-devel-boun...@lists.01.org] On Behalf Of Star Zeng Sent: Friday, July 24, 2015 3:34 PM To: edk2-devel@lists.01.org Cc: Yao, Jiewen Subject: [edk2] [PATCH] MdeModulePkg Variable: Read MonotonicCount by ReadUnaligned

Re: [edk2] [PATCH 1/2] MdeModulePkg CapsuleX64: Reduce reserved memory consumption

2015-07-26 Thread Yao, Jiewen
Reviewed by: Yao, Jiewen I suggest we can consider adding pack for SWITCH_32_TO_64_CONTEXT structure. It might be more safety if we need more data structure later, since it is passed from IA32 to X64. Thank you Yao Jiewen -Original Message- From: edk2-devel [mailto:edk2-devel-boun...

Re: [edk2] [PATCH 1/2] MdeModulePkg CapsuleX64: Reduce reserved memory consumption

2015-07-26 Thread Zeng, Star
Got it, good point. Thanks, Star -Original Message- From: Yao, Jiewen Sent: Monday, July 27, 2015 8:45 AM To: Zeng, Star; edk2-devel@lists.01.org Subject: RE: [edk2] [PATCH 1/2] MdeModulePkg CapsuleX64: Reduce reserved memory consumption Reviewed by: Yao, Jiewen I suggest we can consi

[edk2] [Patch]Vlv2TbltDevicePkg: Fixed OS software shutdown when reporting actual processor temperature

2015-07-26 Thread Lu, ShifeiX A
Fixed OS software shutdown when reporting actual processor temperature. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Lu, ShifeiX A mailto:shifeix.a...@intel.com>> Modified in VfrStrings.uni, FYI. Removed duplicate String" DTS" and help info string" Enabled/Disable Dig

[edk2] [patch] Downgrade one debug message level in DxeTpm2MeasureBootHandler from EFI_D_ERROR to EFI_D_INFO.

2015-07-26 Thread jiewen yao
No TPM2 is considered as valid case. For example, a platform may only have TPM1.2, without TPM2.0 So this is NOT an ERROR message, but more an INFO message. Signed-off-by: Yao, Jiewen Cc: Zhang, Chao --- SecurityPkg/Library/DxeTpm2MeasureBootLib/DxeTpm2MeasureBootLib.c | 2 +- 1 file change

[edk2] [Patch] NetworkPkg: fix an error lead building crash

2015-07-26 Thread Wang Fan
Fix an error which leads the building process crashes. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: fanwang2 --- NetworkPkg/IScsiDxe/IScsiMisc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NetworkPkg/IScsiDxe/IScsiMisc.h b/NetworkPkg/IScsiDxe/ISc

Re: [edk2] [Patch] NetworkPkg: fix an error lead building crash

2015-07-26 Thread Wu, Jiaxin
Reviewed-by: Jiaxin Wu -Original Message- From: Wang, Fan Sent: Monday, July 27, 2015 10:44 AM To: Wu, Jiaxin; Ye, Ting; edk2-devel@lists.01.org Subject: [Patch] NetworkPkg: fix an error lead building crash Fix an error which leads the building process crashes. Contributed-under: Tian

[edk2] [patch] Downgrade one debug message level in DxeTpm2MeasureBootHandler from EFI_D_ERROR to EFI_D_INFO.

2015-07-26 Thread jiewen yao
No TPM2 is considered as valid case. For example, a platform may only have TPM1.2, without TPM2.0 So this is NOT an ERROR message, but more an INFO message. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yao, Jiewen Cc: Zhang, Chao --- SecurityPkg/Library/DxeTpm2Measu

[edk2] [patch] Add Secure MOR implementation at https://msdn.microsoft.com/en-us/library/windows/hardware/mt270973(v=vs.85).aspx

2015-07-26 Thread jiewen yao
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yao, Jiewen Reviewed-by: Zhang, Chao Cc: Zhang, Chao --- .../MemoryOverwriteRequestControlLock.h| 43 + MdePkg/MdePkg.dec | 3 + SecurityPkg/SecurityPkg.dsc

Re: [edk2] [Patch]Vlv2TbltDevicePkg: Fixed OS software shutdown when reporting actual processor temperature

2015-07-26 Thread He, Tim
The patch looks good, thanks.. Best Regards, Tim From: Lu, ShifeiX A Sent: Monday, July 27, 2015 9:42 AM To: edk2-devel@lists.01.org Cc: Wei, David; Wu, Mike; He, Tim Subject: [edk2][Patch]Vlv2TbltDevicePkg: Fixed OS software shutdown when reporting actual processor temperature Fixed OS softwar

[edk2] [patch] Add Secure MOR implementation at https://msdn.microsoft.com/en-us/library/windows/hardware/mt270973(v=vs.85).aspx

2015-07-26 Thread jiewen yao
Add a new module MemoryOverwriteRequestControlLock to register VarCheck handler to enforce MorLock Policy. Only SMM version is added because MOR is only supported in SMM variable case. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yao, Jiewen Reviewed-by: Zhang, Chao

[edk2] [patch] Add MorLockDriverInit() definition to resolve build failure.

2015-07-26 Thread jiewen yao
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yao, Jiewen Reviewed-by: Zhang, Chao Cc: Zhang, Chao --- .../Tcg/MemoryOverwriteRequestControlLock/TcgMorLock.h| 15 +++ 1 file changed, 15 insertions(+) diff --git a/SecurityPkg/Tcg/MemoryOverwriteRequestCo

Re: [edk2] [PATCH 3/7] IntelFrameworkModulePkg: Add missing PCD usage information in UNI and DEC files.

2015-07-26 Thread Fan, Jeff
Reviewed-by: Jeff Fan -Original Message- From: Qiu, Shumin Sent: Tuesday, July 21, 2015 8:50 PM To: edk2-devel@lists.01.org Cc: Qiu, Shumin; Fan, Jeff Subject: [PATCH 3/7] IntelFrameworkModulePkg: Add missing PCD usage information in UNI and DEC files. Contributed-under: TianoCore Cont

[edk2] [patch] Bug fix in PatchFv.py for GCC build in IntelFspPkg.

2015-07-26 Thread jiewen yao
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yao, Jiewen Reviewed-by: "Mudusuru, Giri P" Cc: "Rangarajan, Ravi P" Cc: "Ma, Maurice" --- IntelFspPkg/Tools/PatchFv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IntelFspPkg/Tools/PatchFv.py b/Inte

[edk2] [patch] FspNotifyDxe need handle >4G memory.

2015-07-26 Thread jiewen yao
The FSP API is always 32bit, but FspNotifyDxe might load to >4G memory. In order to make thunk work, we need reload FspNotifyDxe to <4G memory. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yao, Jiewen CC: "Mudusuru, Giri P" Cc: "Rangarajan, Ravi P" Cc: "Ma, Maurice"

Re: [edk2] [PATCH 0/4] FFS/FV aligment optimization (was: [RFC] small C model and LLVM/clang support for AARCH64)

2015-07-26 Thread Gao, Liming
Ard: I did more discussion with Dennis. We don't think this update can resolve my case. We suggest to add SUB GUID section for FFS file that has only one SECTION with the specific alignment. If so, after GenFv adjusts SUB GUID section, it will have no impact on other section data. And, after t

Re: [edk2] [PATCH 6/7] UefiCpuPkg: Add missing PCD usage information in UNI files.

2015-07-26 Thread Fan, Jeff
Reviewed-by: Jeff Fan -Original Message- From: Qiu, Shumin Sent: Tuesday, July 21, 2015 8:51 PM To: edk2-devel@lists.01.org Cc: Qiu, Shumin Subject: [PATCH 6/7] UefiCpuPkg: Add missing PCD usage information in UNI files. Cc Jeff Fan Contributed-under: TianoCore Contribution Agreement 1

Re: [edk2] [PATCH 7/7] SourceLevelDebugPkg: Add missing PCD usage information in UNI files.

2015-07-26 Thread Fan, Jeff
Reviewed-by: Jeff Fan -Original Message- From: Qiu, Shumin Sent: Tuesday, July 21, 2015 8:51 PM To: edk2-devel@lists.01.org Cc: Qiu, Shumin Subject: [PATCH 7/7] SourceLevelDebugPkg: Add missing PCD usage information in UNI files. Cc Jeff Fan Contributed-under: TianoCore Contribution A

Re: [edk2] [PATCH 4/7] NetworkPkg: Add missing PCD usage information in UNI and DEC files.

2015-07-26 Thread Ye, Ting
Reviewed-by: Ye Ting -Original Message- From: Qiu, Shumin Sent: Tuesday, July 21, 2015 8:50 PM To: edk2-devel@lists.01.org Cc: Qiu, Shumin; Ye, Ting; Fu, Siyuan; Zhang, Lubo Subject: [PATCH 4/7] NetworkPkg: Add missing PCD usage information in UNI and DEC files. Cc: Ye Ting Cc: Fu Si

Re: [edk2] Filesystem support

2015-07-26 Thread Meenakshi Aggarwal
HI, I want to add a new test case in SCT to test my driver. My driver installed a blockIO protocol, so I want to test read/write etc Api's using SCT. What is the procedure? Kindly help. Thanks Meenakshi -Original Message- From: Aggarwal Meenakshi-B46476 Sent: Friday, July 24, 201

[edk2] [PATCH v2] MdeModulePkg:Add ESC key support in setup browser pop-up message box

2015-07-26 Thread Dandan Bi
When load default value or save changes will pop up message box to let user confirm,Y means confirm and N means ignore,now add Esc key with the same function of N key.And change the context of pop up message in .uni file, now will display "Press 'Y' to confirm, 'N'/'ESC' to ignore." Contributed-un

[edk2] [Patch] MdeModulePkg: Use monotonic count to initialize the NetLib random seed.

2015-07-26 Thread Fu Siyuan
NetRandomInitSeed() function use current time to initialize the random seed, while in some platform the time service is not accuracy that make the random seed collision. This patch add the monotonic count to the seed to avoid this. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off

Re: [edk2] [Patch] Support get string from configuration string packages.

2015-07-26 Thread Gao, Liming
Eric: Reviewed-by: Liming Gao Thanks Liming -Original Message- From: Dong, Eric Sent: Thursday, July 23, 2015 10:02 AM To: Gao, Liming; edk2-devel@lists.01.org Subject: [Patch] Support get string from configuration string packages. Current implementation avoid add string to configu

[edk2] [patch] MdeModulePkg/UfsPassThru: Fix wrong GLOBAL_REMOVE_IF_UNREFERENCED usage

2015-07-26 Thread Tian Feng
GLOBAL_REMOVE_IF_UNREFERENCED means __declspec(selectany) for MS tool chain IA32/X64 build. According to MSDN, "selectany" would tell the compiler that the declared global data item (variable or object) is a pick-any COMDAT (a packaged function). At link time, if multiple definitions of a COMDAT a

Re: [edk2] [PATCH v2] MdeModulePkg:Add ESC key support in setup browser pop-up message box

2015-07-26 Thread Jordan Justen
On 2015-07-26 22:19:04, Dandan Bi wrote: > When load default value or save changes will pop up message box to let user > confirm,Y means confirm and N means ignore,now add Esc key with the > same function of N key.And change the context of pop up message in .uni file, > now will display "Press 'Y'

[edk2] Fwd: edk2[18072] Fixed OS software shutdown when reporting actual processor temperature

2015-07-26 Thread Jordan Justen
Should this be included on master too? (Not just the UDK branch) For future patches: Could it be posted to edk2-devel for code review? How about including the package name in the first line of the commit message? https://github.com/tianocore/tianocore.github.io/wiki/Commit-Message-Format Thank

Re: [edk2] [PATCH v2] MdeModulePkg:Add ESC key support in setup browser pop-up message box

2015-07-26 Thread Bi, Dandan
Mainly change the context of pop up message in FormDisplayStr.uni file In V2, the pop up message is "Press 'Y' to confirm, 'N'/'ESC' to ignore." In v1, it is "Press 'Y' to confirm, 'N/ESC' to ignore." That's the difference. Thanks, Dandan -Original Message- From: Justen, Jordan L Sent: M