mirror of
https://git.yoctoproject.org/poky
synced 2026-07-27 07:27:12 +00:00
wic: raise WicError instead of ImageError and CreatorError
There is no need to raise special exceptions. Raising WicError should be enough. (From OE-Core rev: b952076cc9f458c3d5eb03e12dc3ec316a44804c) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
8da175607c
commit
af17aa91b3
@@ -28,7 +28,7 @@ import logging
|
||||
import os
|
||||
|
||||
from wic.engine import get_custom_config
|
||||
from wic.errors import ImageError, WicError
|
||||
from wic.errors import WicError
|
||||
from wic.utils import runner
|
||||
from wic.pluginbase import SourcePlugin
|
||||
from wic.utils.misc import (exec_cmd, exec_native_cmd,
|
||||
@@ -71,7 +71,7 @@ class BootimgPcbiosPlugin(SourcePlugin):
|
||||
rcode = runner.show(['dd', 'if=%s' % mbrfile,
|
||||
'of=%s' % full_path, 'conv=notrunc'])
|
||||
if rcode != 0:
|
||||
raise ImageError("Unable to set MBR to %s" % full_path)
|
||||
raise WicError("Unable to set MBR to %s" % full_path)
|
||||
|
||||
@classmethod
|
||||
def do_configure_partition(cls, part, source_params, creator, cr_workdir,
|
||||
|
||||
Reference in New Issue
Block a user