mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 00:32:12 +02:00
wic: bail out on kickstart parse errors
Kickstart file errors are not emitted by the parser. In case errors, the current code will continue to execute possibly creating a faulty or incomplete image. The patch enables the parser to emit all encountered errors. The error message is shown for the user and further execution is ceased. (From OE-Core rev: 0aa1221c16e65b3daac4aa9a9cfe1d5e9e6106c0) Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl> Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
24ffda5438
commit
09fba50cf3
@@ -58,16 +58,13 @@ def read_kickstart(path):
|
||||
def __init__(self):
|
||||
superclass.__init__(self, mapping=commandMap[using_version])
|
||||
|
||||
ks = ksparser.KickstartParser(KSHandlers(), errorsAreFatal=False)
|
||||
ks = ksparser.KickstartParser(KSHandlers(), errorsAreFatal=True)
|
||||
|
||||
try:
|
||||
ks.readKickstart(path)
|
||||
except (kserrors.KickstartParseError, kserrors.KickstartError), err:
|
||||
if msger.ask("Errors occured on kickstart file, skip and continue?"):
|
||||
msger.warning("%s" % err)
|
||||
pass
|
||||
else:
|
||||
raise errors.KsError("%s" % err)
|
||||
msger.warning("Errors occurred when parsing kickstart file: %s\n" % path)
|
||||
msger.error("%s" % err)
|
||||
|
||||
return ks
|
||||
|
||||
|
||||
Reference in New Issue
Block a user