Searched refs:image_fstype (Results 1 – 7 of 7) sorted by relevance
/openbmc/openbmc/poky/meta/lib/oeqa/ |
H A D | targetcontrol.py | 66 image_fstype = self.match_image_fstype(d) 67 if image_fstype: 68 return image_fstype 91 def __init__(self, d, logger, image_fstype=None): argument 99 self.image_fstype = '' 102 self.image_fstype = image_fstype or self.get_image_fstype(d) 103 … os.path.join(d.getVar("DEPLOY_DIR_IMAGE"), d.getVar("IMAGE_LINK_NAME") + '.' + self.image_fstype)
|
/openbmc/openbmc/poky/meta-yocto-bsp/lib/oeqa/controllers/ |
H A D | beaglebonetarget.py | 41 self.image_fstype = self.get_image_fstype(d) 46 'tar xvf ~/test-rootfs.%s -C /mnt/testrootfs' % self.image_fstype, 68 self.controller.copy_to(self.rootfs, "~/test-rootfs.%s" % self.image_fstype)
|
H A D | grubtarget.py | 34 'tar xvf ~/test-rootfs.%s -C /mnt/testrootfs' % self.image_fstype, 46 self.controller.copy_to(self.rootfs, "~/test-rootfs." + self.image_fstype)
|
/openbmc/openbmc/poky/meta/lib/oeqa/controllers/ |
H A D | controllerimage.py | 51 self.image_fstype = self.get_image_fstype(d) 52 …= os.path.join(d.getVar("DEPLOY_DIR_IMAGE"), d.getVar("IMAGE_LINK_NAME") + '.' + self.image_fstype) 181 'tar xvf ~/test-rootfs.%s -C /mnt/testrootfs' % self.image_fstype, 191 self.controller.copy_to(self.rootfs, "~/test-rootfs." + self.image_fstype)
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | overlayfs.py | 363 with runqemu('core-image-minimal', image_fstype='wic') as qemu: 402 with runqemu('core-image-minimal', image_fstype='wic', discard_writes=False) as qemu: 423 with runqemu('core-image-minimal', image_fstype='wic') as qemu: 457 with runqemu('core-image-minimal', image_fstype='wic') as qemu:
|
H A D | wic.py | 963 runqemuparams='nographic ovmf', image_fstype='wic') as qemu: 1158 runqemuparams='nographic', image_fstype='wic') as qemu: 1218 runqemuparams='nographic', image_fstype='wic') as qemu: 1301 runqemuparams='nographic ovmf', image_fstype='wic') as qemu:
|
/openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
H A D | commands.py | 315 def runqemu(pn, ssh=True, runqemuparams='', image_fstype=None, launch_cmd=None, qemuparams=None, ov… argument 348 qemu = oeqa.targetcontrol.QemuTarget(recipedata, targetlogger, image_fstype)
|