Home
last modified time | relevance | path

Searched full:qemu (Results 1 – 25 of 220) sorted by relevance

123456789

/third_party/libuv/.github/workflows/
DCI-unix.yml97 build-cross-qemu:
99 name: build-cross-qemu-${{ matrix.config.target }}
105 … toolchain: gcc-arm-linux-gnueabi, cc: arm-linux-gnueabi-gcc, qemu: qemu-arm-static }
106 … toolchain: gcc-arm-linux-gnueabihf, cc: arm-linux-gnueabihf-gcc, qemu: qemu-arm-static }
107 …, toolchain: gcc-aarch64-linux-gnu, cc: aarch64-linux-gnu-gcc, qemu: qemu-aarch64-static }
108 …, toolchain: gcc-riscv64-linux-gnu, cc: riscv64-linux-gnu-gcc, qemu: qemu-riscv64-static }
109 … toolchain: gcc-powerpc-linux-gnu, cc: powerpc-linux-gnu-gcc, qemu: qemu-ppc-static }
110 … toolchain: gcc-powerpc64-linux-gnu, cc: powerpc64-linux-gnu-gcc, qemu: qemu-ppc64-static }
111 …, toolchain: gcc-powerpc64le-linux-gnu, cc: powerpc64le-linux-gnu-gcc, qemu: qemu-ppc64le-static }
112 … toolchain: gcc-s390x-linux-gnu, cc: s390x-linux-gnu-gcc, qemu: qemu-s390x-static }
[all …]
/third_party/rust/crates/rustix/.github/workflows/
Dtest-users.yml33 qemu: qemu-aarch64
42 qemu: qemu-ppc64le
51 qemu: qemu-mips64el
60 qemu: qemu-mipsel
69 qemu: qemu-riscv64
78 qemu: qemu-arm
108 path: ${{ runner.tool_cache }}/qemu
109 key: qemu-${{ matrix.target }}-${{ env.QEMU_BUILD_VERSION }}-patched
129 - name: Install qemu
134 …echo CARGO_TARGET_${upcase}_RUNNER=${{ runner.tool_cache }}/qemu/bin/${{ matrix.qemu }} ${{ matrix…
[all …]
Dmain.yml251 qemu: qemu-aarch64
260 qemu: qemu-ppc64le
269 qemu: qemu-s390x
278 qemu: qemu-arm
297 qemu: qemu-aarch64
306 qemu: qemu-s390x
315 qemu: qemu-ppc64le
324 qemu: qemu-arm
343 qemu: qemu-aarch64
352 qemu: qemu-s390x
[all …]
/third_party/grpc/tools/internal_ci/helper_scripts/
Dprepare_qemu_rc16 # Source this rc script to setup and configure qemu userspace emulator on kokoro worker so that we …
19 # show pre-existing qemu registration
20 cat /proc/sys/fs/binfmt_misc/qemu-aarch64
22 # Kokoro ubuntu1604 workers have already qemu-user and qemu-user-static packages installed, but it'…
23 # * prints warning about some syscalls (e.g "qemu: Unsupported syscall: 278")
26 # To overcome the above limitations, we use the https://github.com/multiarch/qemu-user-static
27 # docker image to provide a new enough version of qemu-user-static and register it with
29 # which allows the qemu-aarch64-static binary to be loaded eagerly at the time of registration with…
32 # Note that on newer distributions (such as glinux), simply "apt install qemu-user-static" is suffi…
33 # to install qemu-user-static with the right flags.
[all …]
/third_party/toybox/scripts/
Dmkroot.sh83 # Setup networking for QEMU (needs /proc)
116 # /etc/resolv.conf using Google's public nameserver. (We could use QEMU's
117 # 10.0.2.2 forwarder here, but this way works in both chroot and QEMU.)
154 QEMU="qemu-system-arm -M versatilepb -net nic,model=rtl8139 -net user"
196 QEMU="qemu-system-aarch64 -M virt -cpu cortex-a57"
200 QEMU="qemu-system-arm -M virt"
249 QEMU="qemu-system-i386 -cpu 486 -global fw_cfg.dma_enabled=false"
253 QEMU="qemu-system-i386 -cpu pentium3"
256 QEMU=qemu-system-x86_64
285 QEMU="qemu-system-mips -M malta"
[all …]
/third_party/rust/crates/libc/ci/
DREADME.md36 * The MIPS, ARM, and AArch64 builds all use the QEMU userspace emulator to run
42 * The BSD builds, currently OpenBSD and FreeBSD, use QEMU to boot up a system
49 ## QEMU section in CI Systems
51 Lots of the architectures tested here use QEMU in the tests, so it's worth going
52 over all the crazy capabilities QEMU has and the various flavors in which we use
55 First up, QEMU has userspace emulation where it doesn't boot a full kernel, it
56 just runs a binary from another architecture (using the `qemu-<arch>` wrappers).
59 Note that one downside of this QEMU system is that threads are barely
69 * We resort to userspace emulation (QEMU).
80 4. The kernel is booted in QEMU, and it is configured to detect the libc-test
[all …]
Drun.sh12 # If we're going to run tests inside of a qemu image, then we don't need any of
18 if [ "$QEMU" != "" ]; then
19 tmpdir=/tmp/qemu-img-creation
22 if [ -z "${QEMU#*.gz}" ]; then
24 qemufile="$(echo "${QEMU%.gz}" | sed 's/\//__/g')"
26 curl --retry 5 "${MIRRORS_URL}/${QEMU}" | \
29 elif [ -z "${QEMU#*.xz}" ]; then
31 qemufile="$(echo "${QEMU%.xz}" | sed 's/\//__/g')"
33 curl --retry 5 "${MIRRORS_URL}/${QEMU}" | \
38 qemufile="$(echo "${QEMU}" | sed 's/\//__/g')"
[all …]
Dlinux-s390x.sh5 mkdir -m 777 /qemu
6 cd /qemu
8 curl --retry 5 -LO https://github.com/qemu/qemu/raw/HEAD/pc-bios/s390-ccw.img
/third_party/rust/rust/src/ci/docker/host-x86_64/test-various/uefi_qemu_test/
Drun.py32 qemu = 'qemu-system-aarch64'
40 # The i686 target intentionally uses 64-bit qemu; the important
42 qemu = 'qemu-system-x86_64'
50 qemu = 'qemu-system-x86_64'
95 # Run the executable in QEMU and capture the output.
96 output = run(qemu,
113 # uses) provides QEMU 4.2.1, which segfaults on
115 # fixed in newer versions of QEMU, but for now just
/third_party/rust/rust/tests/run-make/thumb-none-qemu/example/.cargo/
Dconfig2 # FIXME: Should be Cortex-M0, but Qemu used by CI is too old
3 runner = "qemu-system-arm -cpu cortex-m3 -machine lm3s6965evb -nographic -semihosting-config enable…
6 runner = "qemu-system-arm -cpu cortex-m3 -machine lm3s6965evb -nographic -semihosting-config enable…
9 runner = "qemu-system-arm -cpu cortex-m4 -machine lm3s6965evb -nographic -semihosting-config enable…
12 runner = "qemu-system-arm -cpu cortex-m4 -machine lm3s6965evb -nographic -semihosting-config enable…
15 # FIXME: Should be the Cortex-M23, bt Qemu does not currently support it
16 runner = "qemu-system-arm -cpu cortex-m33 -machine lm3s6965evb -nographic -semihosting-config enabl…
19 runner = "qemu-system-arm -cpu cortex-m33 -machine lm3s6965evb -nographic -semihosting-config enabl…
22 runner = "qemu-system-arm -cpu cortex-m33 -machine lm3s6965evb -nographic -semihosting-config enabl…
/third_party/libuv/test/
Dtest-getaddrinfo.c85 /* TODO(gengjiawen): Fix test on QEMU. */ in TEST_IMPL()
87 RETURN_SKIP("Test does not currently work in QEMU"); in TEST_IMPL()
115 /* TODO(gengjiawen): Fix test on QEMU. */ in TEST_IMPL()
117 RETURN_SKIP("Test does not currently work in QEMU"); in TEST_IMPL()
136 /* TODO(gengjiawen): Fix test on QEMU. */ in TEST_IMPL()
138 RETURN_SKIP("Test does not currently work in QEMU"); in TEST_IMPL()
162 /* TODO(gengjiawen): Fix test on QEMU. */ in TEST_IMPL()
164 RETURN_SKIP("Test does not currently work in QEMU"); in TEST_IMPL()
182 /* TODO(gengjiawen): Fix test on QEMU. */ in TEST_IMPL()
184 RETURN_SKIP("Test does not currently work in QEMU"); in TEST_IMPL()
Dtest-getnameinfo.c49 /* TODO(gengjiawen): Fix test on QEMU. */ in TEST_IMPL()
51 RETURN_SKIP("Test does not currently work in QEMU"); in TEST_IMPL()
74 /* TODO(gengjiawen): Fix test on QEMU. */ in TEST_IMPL()
76 RETURN_SKIP("Test does not currently work in QEMU"); in TEST_IMPL()
95 /* TODO(gengjiawen): Fix test on QEMU. */ in TEST_IMPL()
97 RETURN_SKIP("Test does not currently work in QEMU"); in TEST_IMPL()
/third_party/rust/rust/src/doc/rustc/src/platform-support/
Dm68k-unknown-linux-gnu.md25 Binaries can be run using QEMU user emulation. On Debian-based systems, it should be
26 sufficient to install the package `qemu-user-static` to be able to run simple static
30 # apt install qemu-user-static
42 QEMU user emulation:
50 Atari systems or emulated environments such as QEMU version 4.2 or newer or ARAnyM.
90 Very simple programs can be run using the `qemu-m68k-static` program:
93 $ qemu-m68k-static your-code
Darmv7-unknown-linux-uclibceabihf.md46 …ies on a `x86_64` system, you can use the `qemu-arm` [userspace emulation](https://qemu-project.gi…
50 * Install `qemu-arm` according to your distro.
63 CARGO_TARGET_ARMV7_UNKNOWN_LINUX_UCLIBCEABIHF_RUNNER="qemu-arm -L ${TOOLCHAIN}/arm-buildroot-linux-…
/third_party/rust/rust/src/ci/docker/host-x86_64/armhf-gnu/
DDockerfile19 qemu-system-arm \
28 # basically just done to be compatible with the QEMU target that we're going
30 # other QEMU target works with some other stock kernel, we can use that too!
67 COPY scripts/qemu-bare-bones-rcS rootfs/etc/init.d/rcS
71 COPY scripts/qemu-bare-bones-addentropy.c /tmp/addentropy.c
75 # Source of the file: https://github.com/vfdev-5/qemu-rpi2-vexpress/raw/master/vexpress-v2p-ca15-tc…
83 ENV RUST_CONFIGURE_ARGS --qemu-armhf-rootfs=/tmp/rootfs
/third_party/rust/crates/linux-raw-sys/gen/ioctl/
Dgenerate.sh28 qemu-aarch64 -L /usr/aarch64-linux-gnu ./main.exe >> "$out"
31 qemu-arm -L /usr/arm-linux-gnueabihf ./main.exe >> "$out"
34 qemu-ppc64le -L /usr/powerpc64le-linux-gnu ./main.exe >> "$out"
37 qemu-mips64el -L /usr/mips64el-linux-gnuabi64 ./main.exe >> "$out"
40 qemu-mipsel -L /usr/mipsel-linux-gnu ./main.exe >> "$out"
43 qemu-riscv64 -L /usr/riscv64-linux-gnu ./main.exe >> "$out"
/third_party/rust/rust/src/ci/docker/host-x86_64/disabled/riscv64gc-linux/
DDockerfile26 qemu-system-misc \
38 # basically just done to be compatible with the QEMU target that we're going
77 COPY scripts/qemu-bare-bones-rcS rootfs/etc/init.d/rcS
81 COPY scripts/qemu-bare-bones-addentropy.c /tmp/addentropy.c
87 # This revision fixes a fault in recent QEMU from 64-bit accesses to the PLIC
100 ENV RUST_CONFIGURE_ARGS --qemu-riscv64-rootfs=/tmp/rootfs
/third_party/mesa3d/docs/drivers/
Dvirgl.rst7 VirGL is a virtual 3D GPU for use inside QEMU virtual machines, that
16 virtual machines running inside QEMU. The design of this card is based
20 rendering for the card is done in the host system as part of QEMU and is
34 * QEMU 2.4 contained the initial virtio-gpu with no acceleration
35 support. QEMU 2.5 contains 3D support only with the GTK3 frontend with
/third_party/rust/crates/libc/ci/docker/mips-unknown-linux-gnu/
DDockerfile4 gcc libc6-dev qemu-user ca-certificates \
6 qemu-system-mips linux-headers-generic
9 CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_RUNNER="qemu-mips -L /usr/mips-linux-gnu" \
/third_party/rust/crates/libc/ci/docker/powerpc64le-unknown-linux-gnu/
DDockerfile4 gcc libc6-dev qemu-user ca-certificates \
6 qemu-system-ppc
9 CARGO_TARGET_POWERPC64LE_UNKNOWN_LINUX_GNU_RUNNER="qemu-ppc64le -L /usr/powerpc64le-linux-gnu" \
/third_party/rust/crates/libc/ci/docker/mips64-unknown-linux-gnuabi64/
DDockerfile4 gcc libc6-dev qemu-user ca-certificates \
6 qemu-system-mips64 linux-headers-generic
9 CARGO_TARGET_MIPS64_UNKNOWN_LINUX_GNUABI64_RUNNER="qemu-mips64 -L /usr/mips64-linux-gnuabi64" \
/third_party/rust/crates/libc/ci/docker/powerpc64-unknown-linux-gnu/
DDockerfile4 gcc libc6-dev qemu-user ca-certificates \
6 qemu-system-ppc
9 CARGO_TARGET_POWERPC64_UNKNOWN_LINUX_GNU_RUNNER="qemu-ppc64 -L /usr/powerpc64-linux-gnu" \
/third_party/rust/crates/libc/ci/docker/mips64el-unknown-linux-gnuabi64/
DDockerfile4 gcc libc6-dev qemu-user ca-certificates \
6 qemu-system-mips64el linux-headers-generic
9 …CARGO_TARGET_MIPS64EL_UNKNOWN_LINUX_GNUABI64_RUNNER="qemu-mips64el -L /usr/mips64el-linux-gnuabi64…
/third_party/rust/crates/libc/ci/docker/powerpc-unknown-linux-gnu/
DDockerfile4 gcc libc6-dev qemu-user ca-certificates \
6 qemu-system-ppc
9 CARGO_TARGET_POWERPC_UNKNOWN_LINUX_GNU_RUNNER="qemu-ppc -L /usr/powerpc-linux-gnu" \
/third_party/rust/crates/libc/ci/docker/riscv64gc-unknown-linux-gnu/
DDockerfile4 gcc libc6-dev qemu-user ca-certificates \
6 qemu-system-riscv64 linux-headers-generic
9 CARGO_TARGET_RISCV64GC_UNKNOWN_LINUX_GNU_RUNNER="qemu-riscv64 -L /usr/riscv64-linux-gnu" \

123456789