From f889b75c5fbbbb549c9299b7193957e6e59b636d Mon Sep 17 00:00:00 2001 From: klu2 Date: Tue, 15 Aug 2006 10:40:42 +0000 Subject: [PATCH] Fix track EDKT179. In fact, I remove the judgment for unmached PCD value. because the checking work should be done in wizard tools. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1276 6f19259b-4bc3-4df7-8a09-765794883524 --- .../action/PlatformPcdPreprocessAction.java | 37 ------------------- 1 file changed, 37 deletions(-) diff --git a/Tools/Source/PcdTools/org/tianocore/pcd/action/PlatformPcdPreprocessAction.java b/Tools/Source/PcdTools/org/tianocore/pcd/action/PlatformPcdPreprocessAction.java index c432b8c3eb..9343c1689d 100644 --- a/Tools/Source/PcdTools/org/tianocore/pcd/action/PlatformPcdPreprocessAction.java +++ b/Tools/Source/PcdTools/org/tianocore/pcd/action/PlatformPcdPreprocessAction.java @@ -363,29 +363,6 @@ public abstract class PlatformPcdPreprocessAction { } if (token.isDynamicPCD) { - // - // Check datum is equal the datum in dynamic information. - // For dynamic PCD, you can do not write in sperated every in different , - // But if you write, the must be same as the value in . - // - if (!token.isSkuEnable() && - (token.getDefaultSku().type == DynamicTokenValue.VALUE_TYPE.DEFAULT_TYPE) && - (datum != null)) { - if (!datum.equalsIgnoreCase(token.getDefaultSku().value)) { - exceptionString = String.format("In the FPD file, for dynamic PCD %s in module %s, the datum in is "+ - "not equal to the datum type in . This is "+ - "illega! You cannot set in for a dynamic PCD!", - token.cName, - moduleName); - putError(exceptionString); - // - // Do not break preprocess, continues to analysis. - // All errors will be summary to be shown. - // - continue; - } - } - if ((maxDatumSize != 0) && (maxDatumSize != token.datumSize)){ exceptionString = String.format("In the FPD file, for dynamic PCD %s in module %s, the max datum size is %d which "+ @@ -595,20 +572,6 @@ public abstract class PlatformPcdPreprocessAction { token.skuData.add(skuInstance); - // - // Judege wether is same of datum between module's information - // and dynamic information. - // - if (datum != null) { - if ((skuInstance.id == 0) && - !datum.toString().equalsIgnoreCase(skuInfoList.get(index).getValue().toString())) { - exceptionString = "In the FPD file, for dynamic PCD " + token.cName + ", the value in module " + moduleName + " is " + datum.toString() + " but the "+ - "value of SKU 0 data in is " + skuInstance.value.value + ". They must be same!"+ - " Also, you cannot define a value for a dynamic PCD in the section!"; - putError(exceptionString); - return null; - } - } continue; } -- 2.39.2