search for: vmchannel_test

Displaying 10 results from an estimated 10 matches for "vmchannel_test".

2014 Jan 01
0
[PATCH] Allow ./configure --without-qemu.
...[$PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin$PATH_SEPARATOR/usr/libexec]) + test "x$QEMU" = "xno" && AC_MSG_ERROR([qemu must be installed]) -dnl Check that the chosen qemu has virtio-serial support. -dnl For historical reasons this can be disabled by setting vmchannel_test=no. -if test "x$vmchannel_test" != "xno"; then - AC_MSG_CHECKING([that $QEMU -help works]) - if $QEMU -help >&AS_MESSAGE_LOG_FD 2>&1; then - AC_MSG_RESULT([yes]) - else + AC_DEFINE_UNQUOTED([QEMU],["$QEMU"],[Location of qemu binary.]) +...
2017 Oct 05
0
[PATCH] build: Don't test for qemu virtio-serial at configure time.
...t "x$QEMU" = "xno" && AC_MSG_ERROR([qemu not found]) AC_DEFINE_UNQUOTED([QEMU],["$QEMU"],[Location of qemu binary.]) - dnl Check that the chosen qemu has virtio-serial support. - dnl For historical reasons this can be disabled by setting - dnl vmchannel_test=no. - if test "x$vmchannel_test" != "xno"; then - AC_MSG_CHECKING([that $QEMU -help works]) - if $QEMU -help >&AS_MESSAGE_LOG_FD 2>&1; then - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - AC_MSG_FAILURE...
2013 Oct 23
1
Notes on compiling libguestfs 1.24 on RHEL 6.4
.../ Check out libguestfs from git. You'll need to create two files in the libguestfs source directory: "localconfigure" containing: ---------------------------------------------------------------------- source localenv # qemu is too old (< 1.0) so the qemu test will fail. export vmchannel_test=no ./autogen.sh \ --prefix /usr \ --disable-ruby \ -C \ "$@" ---------------------------------------------------------------------- "localenv" containing: ---------------------------------------------------------------------- export SUPERMIN=/usr/bin/febootstrap3 expo...
2017 Jan 21
0
virt-p2v on RHEL 5
...ed patches which are not upstreamable. You will need to run bootstrap and/or autogen.sh on more recent machine, since autotools on RHEL 5 is far too old. (This was easy for me because I was building on an NFS homedir shared between Fedora 25 and RHEL 5). Configure libguestfs like this: export vmchannel_test=no export LIBTINFO_CFLAGS=-D_GNU_SOURCE export LIBTINFO_LIBS=-lncurses export YAJL_CFLAGS=-D_GNU_SOURCE export YAJL_LIBS=-lyajl ./configure \ --prefix /usr \ --libdir /usr/lib64 \ --disable-static \ --disable-appliance --disable-daemon \ --disable-ocaml --disable-perl...
2009 Sep 24
1
[PATCH libguestfs] maint: use spaces, not TABs for indentation
...-126,7 +126,7 @@ regressions/ Regression tests. rescue/ - The virt-rescue tool. + The virt-rescue tool. ruby/ Ruby bindings. diff --git a/configure.ac b/configure.ac index 5a0bb47..403a998 100644 --- a/configure.ac +++ b/configure.ac @@ -167,9 +167,9 @@ if test "x$vmchannel_test" != "xno"; then vmchannel_guestfwd=guestfwd else AC_MSG_RESULT([no]) - # Note that this test must be conditional on the previous - # test failing. This is because recent qemu will throw - # up an SDL window and hang if we try to run this test. + # Note...
2014 Feb 25
4
Problem with febootstrap version while compiling guestfsd in centos6.5
Hello, I am try to compile guestfsd using this link<http://thr3ads.net/libguestfs/2012/09/2100168-Re-compile-guestfsd>. I am using libguestfs-1.24.4.tar.gz After running ./configure with disable options i get a message claiming a febootstrap >=3.2. I already installed febootstrap-3.21-4.el6x86_64.rpm for centos6.5. In the rpm description i found a note telling that this rpm will
2015 Oct 29
16
[PATCH 00/16] Refactoring of configure.ac and guestfs.pod
Two (not related to each other) refactorings: Patches 1-12 split configure.ac into smaller files using the m4_include mechanism. Patches 13-15 split out parts of guestfs.pod (ie. guestfs(3)) into three new manual pages: guestfs-hacking(3) - how to extend and contribute to libguestfs guestfs-internals(3) - architecture and internals guestfs-security(3) - security and CVEs Patch 16 is a
2017 Apr 27
4
[PATCH 0/4] common: Add a simple mini-library for handling qemu command and config files.
Currently we have an OCaml library for generating the qemu command line (used only by ‘virt-v2v -o qemu’). However we also generate a qemu command line in ‘lib/launch-direct.c’, and we might in future need to generate a ‘-readconfig’-compatible configuration file if we want to go beyond 10,000 drives for scalability testing. Therefore this patch series reimplements the qemu command line code as
2009 Aug 03
1
[PATCH 1/2] Convert all TABs-as-indentation to spaces.
...c]) + [$PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin$PATH_SEPARATOR/usr/libexec]) test "x$QEMU" = "xno" && AC_MSG_ERROR([qemu must be installed]) AC_DEFINE_UNQUOTED([QEMU],["$QEMU"],[Location of qemu binary.]) @@ -100,13 +100,13 @@ if test "x$vmchannel_test" != "xno"; then else AC_MSG_RESULT([no]) AC_MSG_CHECKING([for "-net channel" support in $QEMU]) - vmchannelout=`$QEMU -net channel /dev/zero 2>&1 ||:` - echo "vmchannel test command output: $vmchannelout" >&AS_MESSAGE_LOG_FD -...
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is time to remove it from libguestfs. [1] https://github.com/libguestfs/virt-p2v [2] http://download.libguestfs.org/virt-p2v/ Pino Toscano (2): Remove virt-p2v Remove remaining virt-p2v bits .gitignore | 4 - Makefile.am | 7 +- bash/Makefile.am