X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=UnixPkg%2FUnixFlashMapPei%2FFlashMap.c;h=786fdd0bdc8361433528872f38db559966137409;hb=a780c9424b45829935845f33ef109ea610285aa7;hp=f37355d7a14027e5e49c3daad248861213fb27ae;hpb=c029854f209612caafa6dad6b0c8e6e639bc41e5;p=mirror_edk2.git diff --git a/UnixPkg/UnixFlashMapPei/FlashMap.c b/UnixPkg/UnixFlashMapPei/FlashMap.c index f37355d7a1..786fdd0bdc 100644 --- a/UnixPkg/UnixFlashMapPei/FlashMap.c +++ b/UnixPkg/UnixFlashMapPei/FlashMap.c @@ -1,7 +1,7 @@ /*++ -Copyright (c) 2006 - 2010, Intel Corporation -All rights reserved. This program and the accompanying materials +Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
+This program and the accompanying materials 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 http://opensource.org/licenses/bsd-license.php @@ -62,7 +62,7 @@ Returns: EFI_PHYSICAL_ADDRESS FdFixUp; UINT64 FdSize; - DEBUG ((EFI_D_ERROR, "NT 32 Flash Map PEIM Loaded\n")); + DEBUG ((EFI_D_ERROR, "UnixPkg Flash Map PEIM Loaded\n")); // // Get the Fwh Information PPI @@ -83,9 +83,9 @@ Returns: return Status; } - PcdSet32 (PcdFlashNvStorageVariableBase, PcdGet32 (PcdUnixFlashNvStorageVariableBase) + (UINT32)FdFixUp); - PcdSet32 (PcdFlashNvStorageFtwWorkingBase, PcdGet32 (PcdUnixFlashNvStorageFtwWorkingBase) + (UINT32)FdFixUp); - PcdSet32 (PcdFlashNvStorageFtwSpareBase, PcdGet32 (PcdUnixFlashNvStorageFtwSpareBase) + (UINT32)FdFixUp); + PcdSet64 (PcdFlashNvStorageVariableBase64, PcdGet64 (PcdUnixFlashNvStorageVariableBase) + FdFixUp); + PcdSet64 (PcdFlashNvStorageFtwWorkingBase64, PcdGet64 (PcdUnixFlashNvStorageFtwWorkingBase) + FdFixUp); + PcdSet64 (PcdFlashNvStorageFtwSpareBase64, PcdGet64 (PcdUnixFlashNvStorageFtwSpareBase) + FdFixUp); return EFI_SUCCESS; }