Searched refs:image_fstype (Results 1 – 8 of 8) 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, boot_patterns=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: 503 with runqemu('core-image-minimal', image_fstype='wic') as qemu:
|
H A D | uki.py | 122 … runqemuparams='%s slirp nographic ovmf' % (runqemu_params), image_fstype='wic') as qemu:
|
H A D | wic.py | 1021 … runqemuparams='%s nographic ovmf' % (runqemu_params), image_fstype='wic') as qemu: 1217 runqemuparams='%s nographic' % (runqemu_params), image_fstype='wic') as qemu: 1282 runqemuparams='%s nographic' % (runqemu_params), image_fstype='wic') as qemu: 1387 … runqemuparams='%s nographic ovmf' % (runqemu_params), image_fstype='wic') as qemu: 1435 runqemuparams='%s nographic' % (runqemu_params), image_fstype='wic') as qemu: 1467 … runqemuparams='%s nographic ovmf' % (runqemu_params), image_fstype='wic') as qemu:
|
/openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
H A D | commands.py | 317 def runqemu(pn, ssh=True, runqemuparams='', image_fstype=None, launch_cmd=None, qemuparams=None, ov… argument 367 …qemu = oeqa.targetcontrol.QemuTarget(recipedata, targetlogger, image_fstype, boot_patterns=boot_pa…
|