from mic import kickstart, msger
from mic.utils import fs_related, runner, misc
from mic.utils.partitionedfs import Image
-from mic.utils.errors import CreatorError, MountError
+from mic.utils.errors import CreatorError, ImageError
from mic.imager.baseimager import BaseImageCreator
from mic.utils.oe.misc import *
from mic.plugin import pluginmgr
if not self.__image is None:
try:
self.__image.cleanup()
- except MountError, err:
+ except ImageError, err:
msger.warning("%s" % err)
if cr._ptable_format == 'msdos':
rootstr = rootdev
else:
- raise MountError("Unsupported partition table format found")
+ raise ImageError("Unsupported partition table format found")
grubefi_conf += "linux %s root=%s rootwait %s\n" \
% (kernel, rootstr, options)
rc = runner.show(['dd', 'if=%s' % mbrfile,
'of=%s' % full_path, 'conv=notrunc'])
if rc != 0:
- raise MountError("Unable to set MBR to %s" % full_path)
+ raise ImageError("Unable to set MBR to %s" % full_path)
@classmethod
def do_configure_partition(self, part, cr, cr_workdir, oe_builddir,
if cr._ptable_format == 'msdos':
rootstr = rootdev
else:
- raise MountError("Unsupported partition table format found")
+ raise ImageError("Unsupported partition table format found")
syslinux_conf += "APPEND label=boot root=%s %s\n" % (rootstr, options)
self.msg = str(self.msg)
return self.keyword + self.msg + ', please use "--help" for more info'
-class Abort(CreatorError):
- keyword = ''
-
class KsError(CreatorError):
keyword = '<kickstart>'
-class MountError(CreatorError):
+class ImageError(CreatorError):
keyword = '<mount>'
from mic import msger
from mic.utils import runner
-from mic.utils.errors import MountError
+from mic.utils.errors import ImageError
from mic.utils.fs_related import *
from mic.utils.oe.misc import *
msger.debug("Assigning %s partitions to disks" % ptable_format)
if ptable_format not in ('msdos'):
- raise MountError("Unknown partition table format '%s', supported " \
+ raise ImageError("Unknown partition table format '%s', supported " \
"formats are: 'msdos'" % ptable_format)
if self._partitions_layed_out:
p = self.partitions[n]
if not self.disks.has_key(p['disk_name']):
- raise MountError("No disk %s for partition %s" \
+ raise ImageError("No disk %s for partition %s" \
% (p['disk_name'], p['mountpoint']))
if p['part_type']:
# The --part-type can also be implemented for MBR partitions,
# in which case it would map to the 1-byte "partition type"
# filed at offset 3 of the partition entry.
- raise MountError("setting custom partition type is not " \
+ raise ImageError("setting custom partition type is not " \
"implemented for msdos partitions")
# Get the disk where the partition is located