Lines Matching refs:fst
325 def check_arg_fstype(self, fst): argument
327 if fst not in self.fstypes + self.vmtypes + self.wictypes:
328 logger.warning("Maybe unsupported FSTYPE: %s" % fst)
329 if not self.fstype or self.fstype == fst:
330 if fst == 'ramfs':
331 fst = 'cpio.gz'
332 if fst in ('tar.bz2', 'tar.gz'):
333 fst = 'nfs'
334 self.fstype = fst
336 raise RunQemuError("Conflicting: FSTYPE %s and %s" % (self.fstype, fst))
373 fst = ""
376 fst = t
378 if not fst:
381 fst = m.group(1)
382 if fst:
383 self.check_arg_fstype(fst)
384 qb = re.sub('\.' + fst + "$", '', self.rootfs)