Home
last modified time | relevance | path

Searched refs:runqemu (Results 1 – 25 of 57) sorted by relevance

123

/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/qemu/
H A Dnativesdk-qemu-helper_1.0.bb10 … file://${COREBASE}/scripts/runqemu;beginline=5;endline=10;md5=ac2b489a58739c7628a2604698db5e7f"
13 SRC_URI = "file://${COREBASE}/scripts/runqemu \
14 file://${COREBASE}/scripts/runqemu-addptable2image \
15 file://${COREBASE}/scripts/runqemu-gen-tapdevs \
16 file://${COREBASE}/scripts/runqemu-ifup \
17 file://${COREBASE}/scripts/runqemu-ifdown \
19 file://${COREBASE}/scripts/runqemu-extract-sdk \
20 file://${COREBASE}/scripts/runqemu-export-rootfs \
35 install -m 0755 ${WORKDIR}${COREBASE}/scripts/runqemu* ${D}${bindir}/
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/
H A Drunqemu.py13 from oeqa.utils.commands import bitbake, runqemu, get_bb_var, runCmd
51 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:
58 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:
65 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:
72 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:
80 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:
87 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:
94 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:
102 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:
109 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:
[all …]
H A Druntime_test.py6 from oeqa.utils.commands import runCmd, bitbake, get_bb_var, get_bb_vars, runqemu
43 with runqemu('core-image-minimal') as qemu:
314 with runqemu('core-image-minimal') as qemu:
437 with runqemu(self.image) as qemu:
449 with runqemu(self.image) as qemu:
461 with runqemu(self.image) as qemu:
473 with runqemu(self.image) as qemu:
H A Doverlayfs.py6 from oeqa.utils.commands import bitbake, runqemu
181 with runqemu('core-image-minimal') as qemu:
374 with runqemu('core-image-minimal', image_fstype='wic') as qemu:
426 with runqemu('core-image-minimal', image_fstype='wic', discard_writes=False) as qemu:
442 with runqemu('core-image-minimal', image_fstype='wic') as qemu:
H A Defibootpartition.py11 from oeqa.utils.commands import bitbake, runqemu, get_bb_var
45 with runqemu(self.image, ssh=False, launch_cmd=cmd) as qemu:
H A Dlocales.py7 from oeqa.utils.commands import bitbake, runqemu
34 with runqemu("core-image-minimal", ssh=False, runqemuparams='nographic') as qemu:
H A Dpackage.py6 from oeqa.utils.commands import bitbake, get_bb_vars, get_bb_var, runqemu
143 with runqemu('core-image-minimal') as qemu:
167 with runqemu('core-image-minimal') as qemu:
H A Dglibc.py7 from oeqa.utils.commands import bitbake, get_bb_var, runqemu
64 qemu = s.enter_context(runqemu("core-image-minimal", runqemuparams = "nographic"))
H A Dimagefeatures.py7 from oeqa.utils.commands import runCmd, bitbake, get_bb_var, runqemu
37 with runqemu("core-image-minimal") as qemu:
63 with runqemu("core-image-minimal") as qemu:
H A Dgcc.py6 from oeqa.utils.commands import bitbake, get_bb_var, get_bb_vars, runqemu
72 with runqemu("core-image-minimal", runqemuparams = "nographic") as qemu:
/OK3568_Linux_fs/yocto/poky/documentation/dev-manual/
H A Dqemu.rst87 4. *Run QEMU:* The basic ``runqemu`` command syntax is as follows::
89 $ runqemu [option ] [...]
92 line, ``runqemu`` does a good job of figuring out what you are trying
103 :term:`Build Directory`, ``runqemu``
117 $ runqemu qemux86-64
124 $ runqemu qemux86-64 core-image-minimal ext4
127 enable audio in QEMU. For this case, ``runqemu`` set the internal
133 $ runqemu qemux86-64 ramfs audio
140 $ runqemu ext4
143 (``.wic.vmdk`` file). From the ``.wic.vmdk``, ``runqemu``
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/
H A Drunqemu-export-rootfs50 if [ ! -d ~/.runqemu-sdk ]; then
51 mkdir -p ~/.runqemu-sdk
55 EXPORTS=~/.runqemu-sdk/exports$NFS_INSTANCE
56 RMTAB=~/.runqemu-sdk/rmtab$NFS_INSTANCE
57 NFSPID=~/.runqemu-sdk/nfs$NFS_INSTANCE.pid
58 MOUNTPID=~/.runqemu-sdk/mount$NFS_INSTANCE.pid
H A Drunqemu-gen-tapdevs81 rm -f /etc/runqemu-nosudo
108 touch /etc/runqemu-nosudo
H A Drunqemu.README9 The runqemu script is run as:
11 runqemu <machine> <zimage> <filesystem>
35 run as non root. The runqemu-gen-tapdevs script can also be used by
H A Dautobuilder-worker-prereq-tests67 DISPLAY=:1 runqemu serialstdio qemux86-64
72 DISPLAY=:1 runqemu serialstdio qemux86-64 kvm
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Dqemurunner.py40 self.runqemu = None
133 if self.runqemu and self.runqemu.poll():
134 if self.runqemu.returncode:
135 self.logger.error('runqemu exited with code %d' % self.runqemu.returncode)
136 self.logger.error('Output from runqemu:\n%s' % self.getOutput(self.runqemu.stdout))
240 …self.runqemu = subprocess.Popen(launch_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.…
241 output = self.runqemu.stdout
267 os.killpg(os.getpgid(self.runqemu.pid), signal.SIGTERM)
270 self.logger.debug("runqemu started, pid is %s" % self.runqemu.pid)
275 if self.runqemu.poll():
[all …]
H A Dqemutinyrunner.py25 self.runqemu = None
97 …self.runqemu = subprocess.Popen(launch_cmd,shell=True,stdout=subprocess.PIPE,stderr=subprocess.STD…
99 bb.note("runqemu started, pid is %s" % self.runqemu.pid)
110 output = self.runqemu.stdout
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dqemuboot.bbclass1 # Help runqemu boot target board, "QB" means Qemu Boot, the following
3 # boot by runqemu:
45 # Note, runqemu will replace @MAC@ with a predefined mac, you can set
54 # Note, runqemu will replace "@TAP@" with the one which is used, such as tap0, tap1 ...
64 # address of the qemu guest by runqemu.
69 # Note, runqemu will replace "@ROOTFS@" with the one which is used, such as core-image…
75 # Note, runqemu will replace "@PORT@" with the port number which is used.
86 # See "runqemu help" for more info
134 # contains all tools required by runqemu
/OK3568_Linux_fs/yocto/poky/documentation/migration-guides/
H A Dmigration-2.2.rst135 .. _migration-2.2-runqemu-ported-to-python:
137 ``runqemu`` Ported to Python
140 ``runqemu`` has been ported to Python and has changed behavior in some
143 The new ``runqemu`` is a Python script. Machine knowledge is no longer
144 hardcoded into ``runqemu``. You can choose to use the ``qemuboot``
146 bootable with ``runqemu``. If you use a configuration file, use the
153 ``runqemu`` script hard-coding any knowledge about different machines.
161 If you want to use ``runqemu`` without a configuration file, use the
164 $ runqemu machine rootfs kernel [options]
182 …$ runqemu qemux86-64 tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.ext4 tmp/deploy/im…
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/lib/devtool/
H A Drunqemu.py19 def runqemu(args, config, basepath, workspace): function
64 parser_runqemu.set_defaults(func=runqemu)
/OK3568_Linux_fs/yocto/poky/meta/conf/machine/include/mips/
H A Dqemuboot-mips.inc1 # For runqemu
/OK3568_Linux_fs/yocto/poky/meta/conf/machine/include/x86/
H A Dqemuboot-x86.inc1 # For runqemu
/OK3568_Linux_fs/yocto/poky/meta-poky/conf/
H A Dconf-notes.txt14 You can also run generated qemu images with a command like 'runqemu qemux86'
/OK3568_Linux_fs/yocto/poky/meta/conf/
H A Dconf-notes.txt14 You can also run generated qemu images with a command like 'runqemu qemux86-64'.
/OK3568_Linux_fs/yocto/poky/meta-yocto-bsp/lib/oeqa/selftest/cases/
H A Dsystemd_boot.py5 from oeqa.utils.commands import runCmd, bitbake, get_bb_var, runqemu

123