Lines Matching refs:filesystem
36 fs_uuid: the UUID for the filesystem (str)
37 fstype: filesystem type
233 def initialize(self, filter_dict={'bus':'usb'}, filesystem='ext2'):
243 @param filesystem: the filesystem name to format the attached device.
249 self._prepare_volume(filter_dict, filesystem=filesystem)
256 def _prepare_volume(self, filter_dict, filesystem='ext2'):
260 the matching storages with |filesystem|.
267 @param filesystem: filesystem with which volumes will be formatted.
269 if not os.path.isfile('/sbin/mkfs.%s' % filesystem):
270 raise error.TestError('filesystem not supported by mkfs installed '
279 cmd = 'mkfs.%s %s' % (filesystem, storage['device'])