From 31bf6304ba2dd97585c0170f0040ea48a6973746 Mon Sep 17 00:00:00 2001 From: Yonghong Zhu Date: Wed, 30 Nov 2016 17:00:19 +0800 Subject: BaseTools: add error check for "#image" for idf file format Add new error check for "#image" keyword used in the image definition file. Cc: Liming Gao Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu Reviewed-by: Liming Gao --- BaseTools/Source/Python/AutoGen/IdfClassObject.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'BaseTools/Source/Python/AutoGen') diff --git a/BaseTools/Source/Python/AutoGen/IdfClassObject.py b/BaseTools/Source/Python/AutoGen/IdfClassObject.py index 76bc6d1b93..d6d4703370 100644 --- a/BaseTools/Source/Python/AutoGen/IdfClassObject.py +++ b/BaseTools/Source/Python/AutoGen/IdfClassObject.py @@ -94,9 +94,12 @@ class IdfFileClassObject(object): if len(Line) == 0: continue + LineNo = GetLineNo(FileIn, Line, False) + if not Line.startswith('#image '): + EdkLogger.error("Image Definition File Parser", PARSER_ERROR, 'The %s in Line %s of File %s is invalid.' % (Line, LineNo, File.Path)) + if Line.find('#image ') >= 0: LineDetails = Line.split() - LineNo = GetLineNo(FileIn, Line, False) Len = len(LineDetails) if Len != 3 and Len != 4: EdkLogger.error("Image Definition File Parser", PARSER_ERROR, 'The format is not match #image IMAGE_ID [TRANSPARENT] ImageFileName in Line %s of File %s.' % (LineNo, File.Path)) -- cgit v1.2.3