Searched +full:- +full:- +full:disable +full:- +full:slirp (Results 1 – 7 of 7) sorted by relevance
/qemu/scripts/ |
H A D | meson-buildoptions.sh | 1 # This file is generated by meson-buildoptions.py, do not edit! 3 printf "%s\n" ' --audio-drv-list=CHOICES Set audio driver list [default] (choices: alsa/co' 6 printf "%s\n" ' --bindir=VALUE Executable directory [bin]' 7 printf "%s\n" ' --block-drv-ro-whitelist=VALUE' 8 printf "%s\n" ' set block driver read-only whitelist (by default' 9 printf "%s\n" ' affects only QEMU, not tools like qemu-img)' 10 printf "%s\n" ' --block-drv-rw-whitelist=VALUE' 11 printf "%s\n" ' set block driver read-write whitelist (by default' 12 printf "%s\n" ' affects only QEMU, not tools like qemu-img)' 13 printf "%s\n" ' --datadir=VALUE Data file directory [share]' [all …]
|
/qemu/.gitlab-ci.d/ |
H A D | buildtest.yml | 2 - local: '/.gitlab-ci.d/buildtest-template.yml' 4 build-system-alpine: 6 - .native_build_job_template 7 - .native_build_artifact_template 9 - job: amd64-alpine-container 12 TARGETS: avr-softmmu loongarch64-softmmu mips64-softmmu mipsel-softmmu 13 MAKE_CHECK_ARGS: check-build 14 CONFIGURE_ARGS: --enable-docs --enable-trace-backends=log,simple,syslog 16 check-system-alpine: 19 - job: build-system-alpine [all …]
|
/qemu/net/ |
H A D | slirp.c | 4 * Copyright (c) 2003-2008 Fabrice Bellard 27 #include "net/slirp.h" 39 #include "qemu/error-report.h" 42 #include "chardev/char-fe.h" 50 #include "migration/qemu-file-types.h" 59 return -1; in get_str_sep() 60 len = p1 - p; in get_str_sep() 63 if (len > buf_size - 1) in get_str_sep() 64 len = buf_size - 1; in get_str_sep() 72 /* slirp network adapter */ [all …]
|
/qemu/tests/vm/ |
H A D | netbsd | 5 # Copyright 2017-2019 Red Hat Inc. 12 # the COPYING file in the top-level directory. 25 link = "https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.3/images/NetBSD-9.3-amd64.iso" 30 "git-base", 34 "ninja-build", 40 "gettext-tools", 66 set -e; 67 rm -rf /home/qemu/qemu-test.* 68 cd $(mktemp -d /home/qemu/qemu-test.XXXXXX); 70 tar -xf /dev/rld1a; [all …]
|
/qemu/ |
H A D | meson_options.txt | 1 # These options do not correspond to a --enable/--disable-* option 3 # scripts/meson-buildoptions.py's SKIP_OPTIONS constant too. 9 option('qemu_firmwarepath', type : 'array', value : ['share/qemu-firmware'], 12 description: 'use specified string as sub-version of the package') 14 description: 'Path to smbd for slirp networking') 25 …description: 'set block driver read-write whitelist (by default affects only QEMU, not tools like … 27 …description: 'set block driver read-only whitelist (by default affects only QEMU, not tools like q… 28 option('interp_prefix', type : 'string', value : '/usr/gnemul/qemu-%M', 33 description: 'fuzzing engine library for OSS-Fuzz') 40 # Everything else can be set via --enable/--disable-* option [all …]
|
H A D | meson.build | 15 meson.add_postconf_script(find_program('scripts/symlink-install-tree.py')) 28 config_host = keyval.load(meson.current_build_dir() / 'config-host.mak') 35 tmpdir = meson.current_build_dir() / 'meson-private/temp' 66 have_linux_user = have_linux_user or target.endswith('linux-user') 67 have_bsd_user = have_bsd_user or target.endswith('bsd-user') 68 have_system = have_system or target.endswith('-softmmu') 113 …dgen.version() + ' is unsupported. You can install a new version with "cargo install bindgen-cli"') 120 message('To use Rust you can install a new version with "cargo install bindgen-cli"') 128 '--rustc-version', rustc.version(), 129 '--workspace', meson.project_source_root() / 'rust'] [all …]
|
/qemu/hw/net/ |
H A D | rtl8139.c | 25 * 2006-Jan-28 Mark Malakanov : TSAD and CSCR implementation (for Windows driver) 27 * 2006-Apr-28 Juergen Lock : EEPROM emulation changes for FreeBSD driver 30 * 2006-Jul-01 Igor Kovalenko : Implemented loopback mode for FreeBSD driver 37 * 2006-Jul-04 Igor Kovalenko : Implemented TCP segmentation offloading 40 * 2006-Jul-09 Igor Kovalenko : Fixed TCP header length calculation while processing 42 * Removed slirp.h dependency 45 * 2010-Feb-04 Frediano Ziglio: Rewrote timer support using QEMU timer only 48 * 2011-Mar-22 Benjamin Poirier: Implemented VLAN offloading 55 #include "hw/qdev-properties.h" 75 ( ( input ) & ( size - 1 ) ) [all …]
|