summaryrefslogtreecommitdiffstats
path: root/BaseTools/Scripts
diff options
context:
space:
mode:
authorKinney, Michael D <michael.d.kinney@intel.com>2018-06-08 20:49:43 -0700
committerKinney, Michael D <michael.d.kinney@intel.com>2018-06-14 15:43:15 -0700
commitb2e043b6895d70c57ef390d160e05c9d6f44298d (patch)
treed2b8f40a2022e8b3ce7f2246f67d5eadf785692c /BaseTools/Scripts
parent1d79b72ee69f59c90fa8c49399c37a305eb3469a (diff)
downloadedk2-b2e043b6895d70c57ef390d160e05c9d6f44298d.tar.gz
edk2-b2e043b6895d70c57ef390d160e05c9d6f44298d.tar.bz2
edk2-b2e043b6895d70c57ef390d160e05c9d6f44298d.zip
BaseTools/BinToPcd: Clarify error message for --type HII
https://bugzilla.tianocore.org/show_bug.cgi?id=963 Update error message for --type HII. If either --variable-guid or --variable-name is missing, then print an error message that states that both --variable-guid and --variable-name are required. Cc: Yanyan Sun <yanyan.sun@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Cc: Liming Gao <liming.gao@intel.com> Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools/Scripts')
-rw-r--r--BaseTools/Scripts/BinToPcd.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/BaseTools/Scripts/BinToPcd.py b/BaseTools/Scripts/BinToPcd.py
index 014aad9800..7e3380190e 100644
--- a/BaseTools/Scripts/BinToPcd.py
+++ b/BaseTools/Scripts/BinToPcd.py
@@ -186,11 +186,8 @@ if __name__ == '__main__':
print ' [PcdsDynamicVpd]'
print ' [PcdsDynamicExVpd]'
elif args.PcdType == 'HII':
- if args.VariableGuid is None:
- print 'BinToPcd: error: argument --variable-guid is required for --type HII.'
- sys.exit()
- if args.VariableName is None:
- print 'BinToPcd: error: argument --variable-name is required for --type HII.'
+ if args.VariableGuid is None or args.VariableName is None:
+ print 'BinToPcd: error: arguments --variable-guid and --variable-name are required for --type HII.'
sys.exit()
if args.Offset is None:
#