mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
v2v: Remove virt-v2v.
It has moved to a new repository: https://github.com/libguestfs/virt-v2v
This commit is contained in:
29
.gitignore
vendored
29
.gitignore
vendored
@@ -48,7 +48,6 @@ Makefile.in
|
||||
/AUTHORS
|
||||
/autom4te.cache
|
||||
/bash/guestunmount
|
||||
/bash/libguestfs-test-tool
|
||||
/bash/virt-builder
|
||||
/bash/virt-cat
|
||||
/bash/virt-copy-in
|
||||
@@ -603,34 +602,6 @@ Makefile.in
|
||||
/utils/boot-benchmark/boot-benchmark.1
|
||||
/utils/qemu-boot/qemu-boot
|
||||
/utils/qemu-speed-test/qemu-speed-test
|
||||
/v2v/.depend
|
||||
/v2v/config.ml
|
||||
/v2v/oUnit-*
|
||||
/v2v/output_rhv_upload_*_source.ml
|
||||
/v2v/real-*.d/
|
||||
/v2v/real-*.img
|
||||
/v2v/real-*.xml
|
||||
/v2v/stamp-virt-v2v*.pod
|
||||
/v2v/test-harness/.depend
|
||||
/v2v/test-harness/META
|
||||
/v2v/test-harness/stamp-virt-v2v-test-harness.pod
|
||||
/v2v/test-harness/virt-v2v-test-harness.1
|
||||
/v2v/test-v2v-conversion-of-*.sh
|
||||
/v2v/uefi.ml
|
||||
/v2v/uefi.mli
|
||||
/v2v/v2v_unit_tests
|
||||
/v2v/var_expander_tests
|
||||
/v2v/virt-v2v
|
||||
/v2v/virt-v2v.1
|
||||
/v2v/virt-v2v-copy-to-local
|
||||
/v2v/virt-v2v-copy-to-local.1
|
||||
/v2v/virt-v2v-input-vmware.1
|
||||
/v2v/virt-v2v-input-xen.1
|
||||
/v2v/virt-v2v-output-local.1
|
||||
/v2v/virt-v2v-output-openstack.1
|
||||
/v2v/virt-v2v-output-rhv.1
|
||||
/v2v/virt-v2v-support.1
|
||||
/v2v/windows.vmdk
|
||||
/website/download/builder/*.xz
|
||||
/website/*.html
|
||||
/website/README.txt
|
||||
|
||||
@@ -174,10 +174,6 @@ SUBDIRS += get-kernel
|
||||
SUBDIRS += resize
|
||||
SUBDIRS += sparsify
|
||||
SUBDIRS += sysprep
|
||||
if HAVE_LIBVIRT
|
||||
SUBDIRS += v2v
|
||||
SUBDIRS += v2v/test-harness
|
||||
endif
|
||||
if HAVE_FUSE
|
||||
SUBDIRS += dib
|
||||
endif
|
||||
@@ -358,9 +354,8 @@ po/POTFILES: configure.ac
|
||||
po/POTFILES-ml: configure.ac
|
||||
rm -f $@ $@-t
|
||||
cd $(srcdir); \
|
||||
find builder common/ml* customize dib get-kernel resize sparsify sysprep v2v -name '*.ml' | \
|
||||
find builder common/ml* customize dib get-kernel resize sparsify sysprep -name '*.ml' | \
|
||||
grep -v '^builder/templates/' | \
|
||||
grep -v '^v2v/config.ml$$' | \
|
||||
LC_ALL=C sort > $@-t
|
||||
mv $@-t $@
|
||||
|
||||
|
||||
36
TODO
36
TODO
@@ -570,39 +570,3 @@ Subsecond handling in virt-diff, virt-ls
|
||||
|
||||
Handle nanoseconds properly. You should be able to specify them on
|
||||
the command line and display them.
|
||||
|
||||
virt-v2v -o rhv-upload
|
||||
----------------------
|
||||
|
||||
* Set or disable the ticket timeout. The default is going to be
|
||||
increased (from current 60 seconds), so maybe we won't have to
|
||||
set it. See also:
|
||||
https://bugzilla.redhat.com/show_bug.cgi?id=1563278
|
||||
|
||||
* qcow2 cannot be supported yet because there is not yet any
|
||||
concept in imageio of read+write handles.
|
||||
https://bugzilla.redhat.com/show_bug.cgi?id=1563299
|
||||
|
||||
* preallocated cannot be supported yet because imageio doesn't
|
||||
know how to zero the image efficiently, instead it runs an
|
||||
fallocate process which writes to every block and that takes
|
||||
many minutes.
|
||||
|
||||
* Really check what insecure/rhv_cafile do and implement it correctly.
|
||||
|
||||
* Measure and resolve performance problems.
|
||||
|
||||
* Allocated image size is unknown for v2v uploads, but imageio needs
|
||||
to know it. We pass initial_size == provisioned_size == virtual size.
|
||||
That can't be fixed from the v2v side.
|
||||
|
||||
* There are unresolved issues about how to clean up disks on failure.
|
||||
|
||||
virt-v2v -o openstack
|
||||
---------------------
|
||||
|
||||
Use the metadata service to find the -oo server-id setting. It would
|
||||
no longer need to be specified on the command line. Note there are
|
||||
two variations of metadata service in OpenStack, either the config
|
||||
disk or link-local network address. We would need to support both, or
|
||||
the possibility that there is no metadata service.
|
||||
|
||||
@@ -20,15 +20,13 @@ include $(top_srcdir)/subdir-rules.mk
|
||||
scripts = \
|
||||
guestfish \
|
||||
guestmount \
|
||||
libguestfs-test-tool \
|
||||
virt-alignment-scan \
|
||||
virt-rescue \
|
||||
virt-v2v \
|
||||
virt-v2v-copy-to-local
|
||||
virt-rescue
|
||||
|
||||
# Some of the scripts are simply symbolic links.
|
||||
symlinks = \
|
||||
guestunmount \
|
||||
libguestfs-test-tool \
|
||||
virt-builder \
|
||||
virt-cat \
|
||||
virt-copy-in \
|
||||
@@ -63,9 +61,9 @@ CLEANFILES += \
|
||||
|
||||
# Any tool that has --short-options and --long-options only is handled
|
||||
# by this common script.
|
||||
libguestfs-test-tool virt-win-reg:
|
||||
virt-win-reg:
|
||||
rm -f $@
|
||||
$(LN_S) virt-v2v-copy-to-local $@
|
||||
$(LN_S) libguestfs-test-tool $@
|
||||
|
||||
# Any tool that has --short-options and --long-options and a few
|
||||
# common options like -d is handled by this common script. However
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# virt-v2v-copy-to-local bash completion script -*- shell-script -*-
|
||||
# libguestfs-test-tool bash completion script -*- shell-script -*-
|
||||
# Copyright (C) 2014-2019 Red Hat Inc.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
@@ -40,12 +40,6 @@ _guestfs_options_only ()
|
||||
esac
|
||||
}
|
||||
|
||||
_virt_v2v_copy_to_local ()
|
||||
{
|
||||
_guestfs_options_only "virt-v2v-copy-to-local"
|
||||
} &&
|
||||
complete -o default -F _virt_v2v_copy_to_local virt-v2v-copy-to-local
|
||||
|
||||
_virt_win_reg ()
|
||||
{
|
||||
_guestfs_options_only "virt-win-reg"
|
||||
@@ -1,59 +0,0 @@
|
||||
# virt-v2v bash completion script -*- shell-script -*-
|
||||
# Copyright (C) 2014 Red Hat Inc.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
_virt_v2v ()
|
||||
{
|
||||
local cur prev words cword split
|
||||
local shortopts longopts items
|
||||
|
||||
_init_completion -s || return
|
||||
|
||||
case "$prev" in
|
||||
-i)
|
||||
items="$(virt-v2v --machine-readable | awk -F':' '/input:/ {print $2;}')"
|
||||
COMPREPLY=( $( compgen -W "$items" -- "$cur") )
|
||||
return ;;
|
||||
-o)
|
||||
items="$(virt-v2v --machine-readable | awk -F':' '/output:/ {print $2;}')"
|
||||
COMPREPLY=( $( compgen -W "$items" -- "$cur") )
|
||||
return ;;
|
||||
-oa)
|
||||
COMPREPLY=( $( compgen -W "sparse preallocated" -- "$cur") )
|
||||
return ;;
|
||||
--vmtype)
|
||||
COMPREPLY=( $( compgen -W "server desktop" -- "$cur") )
|
||||
return ;;
|
||||
esac
|
||||
|
||||
case "$cur" in
|
||||
--*)
|
||||
# --options
|
||||
longopts="$(virt-v2v --long-options)"
|
||||
COMPREPLY=( $(compgen -W "$longopts" -- "$cur") )
|
||||
return ;;
|
||||
-*)
|
||||
# -o and --options
|
||||
shortopts="$(virt-v2v --short-options)"
|
||||
longopts="$(virt-v2v --long-options)"
|
||||
COMPREPLY=( $(compgen -W "$shortopts $longopts" -- "$cur") )
|
||||
return ;;
|
||||
*)
|
||||
COMPREPLY=( $(compgen "$cur") )
|
||||
return ;;
|
||||
esac
|
||||
} &&
|
||||
complete -o default -F _virt_v2v virt-v2v
|
||||
10
configure.ac
10
configure.ac
@@ -166,10 +166,6 @@ m4_include([m4/guestfs-rust.m4])
|
||||
HEADING([Checking for Vala])
|
||||
VAPIGEN_CHECK
|
||||
|
||||
dnl virt-v2v.
|
||||
HEADING([Checking the virt-v2v dependencies])
|
||||
m4_include([m4/guestfs-v2v.m4])
|
||||
|
||||
dnl Bash completion.
|
||||
HEADING([Checking for bash completion])
|
||||
m4_include([m4/guestfs-bash-completion.m4])
|
||||
@@ -318,8 +314,6 @@ AC_CONFIG_FILES([Makefile
|
||||
test-data/Makefile
|
||||
test-data/binaries/Makefile
|
||||
test-data/blank-disks/Makefile
|
||||
test-data/fake-virtio-win/Makefile
|
||||
test-data/fake-virt-tools/Makefile
|
||||
test-data/files/Makefile
|
||||
test-data/phony-guests/Makefile
|
||||
test-data/phony-guests/guests.xml
|
||||
@@ -369,10 +363,6 @@ AC_CONFIG_FILES([Makefile
|
||||
utils/max-disks/Makefile
|
||||
utils/qemu-boot/Makefile
|
||||
utils/qemu-speed-test/Makefile
|
||||
v2v/Makefile
|
||||
v2v/config.ml
|
||||
v2v/test-harness/Makefile
|
||||
v2v/test-harness/META
|
||||
website/index.html])
|
||||
|
||||
AC_OUTPUT
|
||||
|
||||
@@ -396,6 +396,3 @@ utils/boot-analysis/boot-analysis.h
|
||||
utils/boot-benchmark/boot-benchmark.c
|
||||
utils/qemu-boot/qemu-boot.c
|
||||
utils/qemu-speed-test/qemu-speed-test.c
|
||||
v2v/dummy.c
|
||||
v2v/qemuopts-c.c
|
||||
v2v/test-harness/dummy.c
|
||||
|
||||
@@ -76,7 +76,7 @@ I<Required>.
|
||||
|
||||
=item qemu-img E<ge> 1.3.0
|
||||
|
||||
I<Required>. Virt-v2v requires qemu-img E<ge> 2.2.0.
|
||||
I<Required>.
|
||||
|
||||
=item kernel E<ge> 2.6.34
|
||||
|
||||
@@ -272,9 +272,6 @@ Optional. Used only for testing.
|
||||
|
||||
Optional. qemu-nbd is used for testing.
|
||||
|
||||
L<virt-v2v(1)> requires nbdkit E<ge> 1.12 for various input and output
|
||||
modes.
|
||||
|
||||
=item uml_mkcow
|
||||
|
||||
Optional. For the L<UML backend|guestfs(3)/BACKEND>.
|
||||
@@ -292,12 +289,6 @@ Optional. Used by virt-builder for checking digital signatures.
|
||||
Optional. If available, virt-builder will use this library
|
||||
for fast, parallel uncompression of templates.
|
||||
|
||||
=item zip
|
||||
|
||||
=item unzip
|
||||
|
||||
Optional. Used by virt-v2v to handle OVA files.
|
||||
|
||||
=item python-evtx
|
||||
|
||||
Optional. Used by L<virt-log(1)> to parse Windows Event Log files.
|
||||
@@ -310,10 +301,6 @@ Optional. For localizing OCaml virt tools.
|
||||
|
||||
Optional. For testing the common OCaml modules.
|
||||
|
||||
=item ocaml-libvirt E<ge> 0.6.1.5
|
||||
|
||||
Optional. For building the optional virt-v2v test harness.
|
||||
|
||||
=item Perl C<Module::Build> E<ge> 0.19
|
||||
|
||||
=item Perl C<Test::More>
|
||||
|
||||
@@ -269,13 +269,6 @@ L<http://koji.fedoraproject.org/koji/packageinfo?packageID=8391>
|
||||
|
||||
=over 4
|
||||
|
||||
=item RHEL 5
|
||||
|
||||
The version shipped in official RHEL 5 is very old and should not be
|
||||
used except in conjunction with virt-v2v. Use the up-to-date
|
||||
libguestfs 1.20 package in EPEL 5:
|
||||
L<https://fedoraproject.org/wiki/EPEL>
|
||||
|
||||
=item RHEL 6
|
||||
|
||||
=item RHEL 7
|
||||
@@ -952,7 +945,7 @@ how you installed libguestfs (eg. from source, C<yum install>, etc.)
|
||||
=back
|
||||
|
||||
=head2 How do I debug when using any libguestfs program or tool
|
||||
(eg. virt-v2v or virt-df)?
|
||||
(eg. virt-customize or virt-df)?
|
||||
|
||||
There are two C<LIBGUESTFS_*> environment variables you can set in
|
||||
order to get more information from libguestfs.
|
||||
|
||||
@@ -45,7 +45,7 @@ the source code of the core library. F<generator> is the code
|
||||
generator described above, so that is important. The F<Makefile.am>
|
||||
in the root directory will tell you in which order the subdirectories
|
||||
get built. And then if you are looking at a particular tool
|
||||
(eg. F<v2v>) or language binding (eg. F<python>), go straight to that
|
||||
(eg. F<customize>) or language binding (eg. F<python>), go straight to that
|
||||
subdirectory, but remember that if you didn't run the generator yet,
|
||||
then you may find files which appear to be missing.
|
||||
|
||||
@@ -126,17 +126,13 @@ A library of pure OCaml utility functions used in many places.
|
||||
=item F<common/mltools>
|
||||
|
||||
OCaml utility functions only used by the OCaml virt tools (like
|
||||
C<virt-sysprep>, C<virt-v2v> etc.)
|
||||
C<virt-sysprep>, C<virt-customize> etc.)
|
||||
|
||||
=item F<common/mlutils>
|
||||
|
||||
OCaml bindings for C functions in C<common/utils>, and some POSIX
|
||||
bindings which are missing from the OCaml stdlib.
|
||||
|
||||
=item F<common/mlv2v>
|
||||
|
||||
A few generated files used by virt-v2v.
|
||||
|
||||
=item F<common/mlvisit>
|
||||
|
||||
OCaml bindings for the visit functions (see F<common/visit>).
|
||||
@@ -326,7 +322,9 @@ Miscellaneous utilities, such as C<boot-benchmark>.
|
||||
|
||||
=item F<v2v>
|
||||
|
||||
L<virt-v2v(1)> command and documentation.
|
||||
Up to libguestfs E<gt> 1.42 this contained the L<virt-v2v(1)> tool,
|
||||
but this has now moved into a separate repository:
|
||||
L<https://github.com/libguestfs/virt-v2v>
|
||||
|
||||
=item F<website>
|
||||
|
||||
@@ -896,7 +894,7 @@ because OCaml programs usually have C files for native bindings etc.
|
||||
|
||||
So a typical program is described as just its C sources:
|
||||
|
||||
virt_v2v_SOURCES = ... utils-c.c xml-c.c
|
||||
virt_customize_SOURCES = ... crypt-c.c perl_edit-c.c
|
||||
|
||||
For programs that have no explicit C sources, we create an empty
|
||||
F<dummy.c> file, and list that instead:
|
||||
@@ -906,17 +904,17 @@ F<dummy.c> file, and list that instead:
|
||||
The OCaml objects which contain most of the code are listed as
|
||||
automake dependencies (other dependencies may also be listed):
|
||||
|
||||
virt_v2v_DEPENDENCIES = ... cmdline.cmx v2v.cmx
|
||||
virt_customize_DEPENDENCIES = ... customize_main.cmx
|
||||
|
||||
The only other special thing we need to do is to provide a custom link
|
||||
command. This is needed because automake won't assemble the ocamlopt
|
||||
command, the list of objects and the C<-cclib> libraries in the
|
||||
correct order otherwise.
|
||||
|
||||
virt_v2v_LINK = \
|
||||
virt_customize_LINK = \
|
||||
$(top_srcdir)/ocaml-link.sh -cclib '-lutils -lgnu' -- ...
|
||||
|
||||
The actual rules, which you can examine in F<v2v/Makefile.am>, are a
|
||||
The actual rules, which you can examine in F<customize/Makefile.am>, are a
|
||||
little bit more complicated than this because they have to handle:
|
||||
|
||||
=over 4
|
||||
@@ -941,49 +939,6 @@ it will not add them all automatically.
|
||||
|
||||
=back
|
||||
|
||||
=head2 VIRT-V2V
|
||||
|
||||
First a little history. Virt-v2v has been through at least two
|
||||
complete rewrites, so this is probably about the third version (but we
|
||||
don't intend to rewrite it again). The previous version was written
|
||||
in Perl and can be found here:
|
||||
L<https://git.fedorahosted.org/git/virt-v2v.git>
|
||||
|
||||
The current version started out as almost a line-for-line rewrite of
|
||||
the Perl code in OCaml + C, and it still has a fairly similar
|
||||
structure. Therefore if there are details of this code that you don't
|
||||
understand (especially in the details of guest conversion), checking
|
||||
the Perl code may help.
|
||||
|
||||
The files to start with when reading this code are:
|
||||
|
||||
=over 4
|
||||
|
||||
=item *
|
||||
|
||||
F<types.mli>
|
||||
|
||||
=item *
|
||||
|
||||
F<v2v.ml>
|
||||
|
||||
=back
|
||||
|
||||
F<types.mli> defines all the structures used and passed around when
|
||||
communicating between different bits of the program. F<v2v.ml>
|
||||
controls how the program runs in stages.
|
||||
|
||||
After studying those files, you may want to branch out into the input
|
||||
modules (F<input_*>), the output modules (F<output_*>) or the
|
||||
conversion modules (F<convert_*>). The input and output modules
|
||||
define I<-i> and I<-o> options (see the manual). The conversion
|
||||
modules define what guest types we can handle and the detailed steps
|
||||
involved in converting them.
|
||||
|
||||
Every other file in this directory is a support module / library of
|
||||
some sort. Some code is written in C, especially where we want to use
|
||||
an external C library such as libxml2.
|
||||
|
||||
=head1 MAINTAINER TASKS
|
||||
|
||||
=head2 MAINTAINER MAKEFILE TARGETS
|
||||
|
||||
@@ -67,8 +67,6 @@ cp @bindir@/virt-sparsify sparsify/
|
||||
cp @bindir@/virt-sysprep sysprep/
|
||||
cp @bindir@/virt-tar-in fish/
|
||||
cp @bindir@/virt-tar-out fish/
|
||||
cp @bindir@/virt-v2v v2v/
|
||||
cp @bindir@/virt-v2v-copy-to-local v2v/
|
||||
cp @bindir@/virt-win-reg tools/
|
||||
|
||||
# virt-list-filesystems, virt-list-partitions and virt-tar are not
|
||||
@@ -102,7 +100,6 @@ compare @libdir@/libguestfs.so lib/.libs/libguestfs.so
|
||||
compare @bindir@/guestfish fish/guestfish
|
||||
compare @bindir@/guestmount fuse/guestmount
|
||||
compare @bindir@/virt-df df/virt-df
|
||||
compare @bindir@/virt-v2v v2v/virt-v2v
|
||||
compare @libdir@/guestfs/supermin.d/daemon.tar.gz \
|
||||
appliance/supermin.d/daemon.tar.gz
|
||||
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
* should cause appliance building to fail (no UEFI firmware is not an
|
||||
* error).
|
||||
*
|
||||
* See also F<v2v/utils.ml>:find_uefi_firmware
|
||||
* See also F<virt-v2v.git/v2v/utils.ml>:find_uefi_firmware
|
||||
*/
|
||||
int
|
||||
guestfs_int_get_uefi (guestfs_h *g, char **code, char **vars, int *flags)
|
||||
|
||||
@@ -113,13 +113,6 @@ if test "x$YACC" = "xyacc"; then
|
||||
AC_MSG_FAILURE([GNU 'bison' is required (yacc won't work).])
|
||||
fi
|
||||
|
||||
dnl zip/unzip, used by virt-v2v
|
||||
AC_PATH_PROGS([ZIP],[zip],[no])
|
||||
AC_DEFINE_UNQUOTED([ZIP],["$ZIP"],[Name of zip program.])
|
||||
AM_CONDITIONAL([HAVE_ZIP],[test "x$ZIP" != "xno"])
|
||||
AC_PATH_PROGS([UNZIP],[unzip],[no])
|
||||
AC_DEFINE_UNQUOTED([UNZIP],["$UNZIP"],[Name of unzip program.])
|
||||
|
||||
dnl Check for valgrind
|
||||
AC_CHECK_PROG([VALGRIND],[valgrind],[valgrind],[no])
|
||||
AS_IF([test "x$VALGRIND" != "xno"],[
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
# libguestfs
|
||||
# Copyright (C) 2009-2019 Red Hat Inc.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
dnl Virt-v2v.
|
||||
|
||||
dnl nbdkit python plugin.
|
||||
AC_MSG_CHECKING([for the nbdkit python plugin name])
|
||||
AC_ARG_WITH([virt-v2v-nbdkit-python-plugin],
|
||||
[AS_HELP_STRING([--with-virt-v2v-nbdkit-python-plugin="python|..."],
|
||||
[set nbdkit python plugin name used by virt-v2v @<:@default=python@:>@])],
|
||||
[VIRT_V2V_NBDKIT_PYTHON_PLUGIN="$withval"],
|
||||
[VIRT_V2V_NBDKIT_PYTHON_PLUGIN=python])
|
||||
AC_MSG_RESULT([$VIRT_V2V_NBDKIT_PYTHON_PLUGIN])
|
||||
AC_SUBST([VIRT_V2V_NBDKIT_PYTHON_PLUGIN])
|
||||
1
run.in
1
run.in
@@ -104,7 +104,6 @@ prepend PATH "$b/sparsify"
|
||||
prepend PATH "$b/sysprep"
|
||||
prepend PATH "$b/test-tool"
|
||||
prepend PATH "$b/tools"
|
||||
prepend PATH "$b/v2v"
|
||||
export PATH
|
||||
|
||||
# Set LD_LIBRARY_PATH and DYLD_LIBRARY_PATH to contain library.
|
||||
|
||||
@@ -22,7 +22,6 @@ SUBDIRS += blank-disks
|
||||
if ENABLE_APPLIANCE
|
||||
SUBDIRS += phony-guests
|
||||
endif
|
||||
SUBDIRS += fake-virtio-win fake-virt-tools
|
||||
SUBDIRS += files
|
||||
SUBDIRS += .
|
||||
|
||||
|
||||
@@ -1,31 +0,0 @@
|
||||
# libguestfs test images
|
||||
# Copyright (C) 2009-2019 Red Hat Inc.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
# Fake virt-tools.
|
||||
#
|
||||
# Tests in the v2v subdirectory can set VIRT_TOOLS_DATA_DIR to point
|
||||
# to this directory in order to test conversions.
|
||||
#
|
||||
# Note that the "binaries" are not real!
|
||||
|
||||
include $(top_srcdir)/subdir-rules.mk
|
||||
|
||||
EXTRA_DIST = \
|
||||
pnp_wait.exe \
|
||||
rhev-apt.exe \
|
||||
rhsrvany.exe \
|
||||
vmdp.exe
|
||||
@@ -1 +0,0 @@
|
||||
This is a fake pnp_wait.exe, used for testing only
|
||||
@@ -1 +0,0 @@
|
||||
This is a fake rhev-apt.exe, used for testing only
|
||||
@@ -1 +0,0 @@
|
||||
This is a fake rhsrvany.exe, used for testing only
|
||||
@@ -1 +0,0 @@
|
||||
This is a fake vmdp.exe, used for testing only
|
||||
@@ -1,601 +0,0 @@
|
||||
# libguestfs test images
|
||||
# Copyright (C) 2009-2019 Red Hat Inc.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
# Fake virtio-win (Windows virtio) drivers.
|
||||
#
|
||||
# Tests in the v2v subdirectory can set VIRTIO_WIN to point to this
|
||||
# directory, or to the .iso file in this directory, in order to test
|
||||
# conversions.
|
||||
#
|
||||
# Note that the "drivers" are not real!
|
||||
|
||||
include $(top_srcdir)/subdir-rules.mk
|
||||
|
||||
drivers = \
|
||||
drivers/amd64/Win2003/netkvm.cat \
|
||||
drivers/amd64/Win2003/netkvm.inf \
|
||||
drivers/amd64/Win2003/netkvm.sys \
|
||||
drivers/amd64/Win2003/viostor.cat \
|
||||
drivers/amd64/Win2003/viostor.inf \
|
||||
drivers/amd64/Win2003/viostor.sys \
|
||||
drivers/amd64/Win2008/netkvm.cat \
|
||||
drivers/amd64/Win2008/netkvm.inf \
|
||||
drivers/amd64/Win2008/netkvm.sys \
|
||||
drivers/amd64/Win2008R2/netkvm.cat \
|
||||
drivers/amd64/Win2008R2/netkvm.inf \
|
||||
drivers/amd64/Win2008R2/netkvm.sys \
|
||||
drivers/amd64/Win2008R2/qxl.cat \
|
||||
drivers/amd64/Win2008R2/qxldd.dll \
|
||||
drivers/amd64/Win2008R2/qxl.inf \
|
||||
drivers/amd64/Win2008R2/qxl.sys \
|
||||
drivers/amd64/Win2008R2/vioscsi.cat \
|
||||
drivers/amd64/Win2008R2/vioscsi.inf \
|
||||
drivers/amd64/Win2008R2/vioscsi.sys \
|
||||
drivers/amd64/Win2008R2/viostor.cat \
|
||||
drivers/amd64/Win2008R2/viostor.inf \
|
||||
drivers/amd64/Win2008R2/viostor.sys \
|
||||
drivers/amd64/Win2008/vioscsi.cat \
|
||||
drivers/amd64/Win2008/vioscsi.inf \
|
||||
drivers/amd64/Win2008/vioscsi.sys \
|
||||
drivers/amd64/Win2008/viostor.cat \
|
||||
drivers/amd64/Win2008/viostor.inf \
|
||||
drivers/amd64/Win2008/viostor.sys \
|
||||
drivers/amd64/Win2012/netkvm.cat \
|
||||
drivers/amd64/Win2012/netkvm.inf \
|
||||
drivers/amd64/Win2012/netkvm.sys \
|
||||
drivers/amd64/Win2012R2/netkvm.cat \
|
||||
drivers/amd64/Win2012R2/netkvm.inf \
|
||||
drivers/amd64/Win2012R2/netkvm.sys \
|
||||
drivers/amd64/Win2012R2/vioscsi.cat \
|
||||
drivers/amd64/Win2012R2/vioscsi.inf \
|
||||
drivers/amd64/Win2012R2/vioscsi.sys \
|
||||
drivers/amd64/Win2012R2/viostor.cat \
|
||||
drivers/amd64/Win2012R2/viostor.inf \
|
||||
drivers/amd64/Win2012R2/viostor.sys \
|
||||
drivers/amd64/Win2012/vioscsi.cat \
|
||||
drivers/amd64/Win2012/vioscsi.inf \
|
||||
drivers/amd64/Win2012/vioscsi.sys \
|
||||
drivers/amd64/Win2012/viostor.cat \
|
||||
drivers/amd64/Win2012/viostor.inf \
|
||||
drivers/amd64/Win2012/viostor.sys \
|
||||
drivers/amd64/Win7/netkvm.cat \
|
||||
drivers/amd64/Win7/netkvm.inf \
|
||||
drivers/amd64/Win7/netkvm.sys \
|
||||
drivers/amd64/Win7/qxl.cat \
|
||||
drivers/amd64/Win7/qxldd.dll \
|
||||
drivers/amd64/Win7/qxl.inf \
|
||||
drivers/amd64/Win7/qxl.sys \
|
||||
drivers/amd64/Win7/vioscsi.cat \
|
||||
drivers/amd64/Win7/vioscsi.inf \
|
||||
drivers/amd64/Win7/vioscsi.sys \
|
||||
drivers/amd64/Win7/viostor.cat \
|
||||
drivers/amd64/Win7/viostor.inf \
|
||||
drivers/amd64/Win7/viostor.sys \
|
||||
drivers/amd64/Win8.1/netkvm.cat \
|
||||
drivers/amd64/Win8.1/netkvm.inf \
|
||||
drivers/amd64/Win8.1/netkvm.sys \
|
||||
drivers/amd64/Win8.1/vioscsi.cat \
|
||||
drivers/amd64/Win8.1/vioscsi.inf \
|
||||
drivers/amd64/Win8.1/vioscsi.sys \
|
||||
drivers/amd64/Win8.1/viostor.cat \
|
||||
drivers/amd64/Win8.1/viostor.inf \
|
||||
drivers/amd64/Win8.1/viostor.sys \
|
||||
drivers/amd64/Win8/netkvm.cat \
|
||||
drivers/amd64/Win8/netkvm.inf \
|
||||
drivers/amd64/Win8/netkvm.sys \
|
||||
drivers/amd64/Win8/vioscsi.cat \
|
||||
drivers/amd64/Win8/vioscsi.inf \
|
||||
drivers/amd64/Win8/vioscsi.sys \
|
||||
drivers/amd64/Win8/viostor.cat \
|
||||
drivers/amd64/Win8/viostor.inf \
|
||||
drivers/amd64/Win8/viostor.sys \
|
||||
drivers/i386/Win2003/netkvm.cat \
|
||||
drivers/i386/Win2003/netkvm.inf \
|
||||
drivers/i386/Win2003/netkvm.sys \
|
||||
drivers/i386/Win2003/viostor.cat \
|
||||
drivers/i386/Win2003/viostor.inf \
|
||||
drivers/i386/Win2003/viostor.sys \
|
||||
drivers/i386/Win2008/netkvm.cat \
|
||||
drivers/i386/Win2008/netkvm.inf \
|
||||
drivers/i386/Win2008/netkvm.sys \
|
||||
drivers/i386/Win2008/vioscsi.cat \
|
||||
drivers/i386/Win2008/vioscsi.inf \
|
||||
drivers/i386/Win2008/vioscsi.sys \
|
||||
drivers/i386/Win2008/viostor.cat \
|
||||
drivers/i386/Win2008/viostor.inf \
|
||||
drivers/i386/Win2008/viostor.sys \
|
||||
drivers/i386/Win7/netkvm.cat \
|
||||
drivers/i386/Win7/netkvm.inf \
|
||||
drivers/i386/Win7/netkvm.sys \
|
||||
drivers/i386/Win7/qxl.cat \
|
||||
drivers/i386/Win7/qxldd.dll \
|
||||
drivers/i386/Win7/qxl.inf \
|
||||
drivers/i386/Win7/qxl.sys \
|
||||
drivers/i386/Win7/vioscsi.cat \
|
||||
drivers/i386/Win7/vioscsi.inf \
|
||||
drivers/i386/Win7/vioscsi.sys \
|
||||
drivers/i386/Win7/viostor.cat \
|
||||
drivers/i386/Win7/viostor.inf \
|
||||
drivers/i386/Win7/viostor.sys \
|
||||
drivers/i386/Win8.1/netkvm.cat \
|
||||
drivers/i386/Win8.1/netkvm.inf \
|
||||
drivers/i386/Win8.1/netkvm.sys \
|
||||
drivers/i386/Win8.1/vioscsi.cat \
|
||||
drivers/i386/Win8.1/vioscsi.inf \
|
||||
drivers/i386/Win8.1/vioscsi.sys \
|
||||
drivers/i386/Win8.1/viostor.cat \
|
||||
drivers/i386/Win8.1/viostor.inf \
|
||||
drivers/i386/Win8.1/viostor.sys \
|
||||
drivers/i386/Win8/netkvm.cat \
|
||||
drivers/i386/Win8/netkvm.inf \
|
||||
drivers/i386/Win8/netkvm.sys \
|
||||
drivers/i386/Win8/vioscsi.cat \
|
||||
drivers/i386/Win8/vioscsi.inf \
|
||||
drivers/i386/Win8/vioscsi.sys \
|
||||
drivers/i386/Win8/viostor.cat \
|
||||
drivers/i386/Win8/viostor.inf \
|
||||
drivers/i386/Win8/viostor.sys \
|
||||
drivers/i386/WinXP/netkvm.cat \
|
||||
drivers/i386/WinXP/netkvm.inf \
|
||||
drivers/i386/WinXP/netkvm.sys \
|
||||
drivers/i386/WinXP/qxl.cat \
|
||||
drivers/i386/WinXP/qxldd.dll \
|
||||
drivers/i386/WinXP/qxl.inf \
|
||||
drivers/i386/WinXP/qxl.sys \
|
||||
drivers/i386/WinXP/viostor.cat \
|
||||
drivers/i386/WinXP/viostor.inf \
|
||||
drivers/i386/WinXP/viostor.sys
|
||||
|
||||
cd_files = \
|
||||
cd/Balloon/2k12/amd64/balloon.cat \
|
||||
cd/Balloon/2k12/amd64/balloon.inf \
|
||||
cd/Balloon/2k12/amd64/balloon.pdb \
|
||||
cd/Balloon/2k12/amd64/balloon.sys \
|
||||
cd/Balloon/2k12/amd64/blnsvr.exe \
|
||||
cd/Balloon/2k12/amd64/blnsvr.pdb \
|
||||
cd/Balloon/2k12/amd64/WdfCoInstaller01011.dll \
|
||||
cd/Balloon/2k12R2/amd64/balloon.cat \
|
||||
cd/Balloon/2k12R2/amd64/balloon.inf \
|
||||
cd/Balloon/2k12R2/amd64/balloon.pdb \
|
||||
cd/Balloon/2k12R2/amd64/balloon.sys \
|
||||
cd/Balloon/2k12R2/amd64/blnsvr.exe \
|
||||
cd/Balloon/2k12R2/amd64/blnsvr.pdb \
|
||||
cd/Balloon/2k12R2/amd64/WdfCoInstaller01011.dll \
|
||||
cd/Balloon/2k3/amd64/balloon.cat \
|
||||
cd/Balloon/2k3/amd64/balloon.inf \
|
||||
cd/Balloon/2k3/amd64/balloon.pdb \
|
||||
cd/Balloon/2k3/amd64/balloon.sys \
|
||||
cd/Balloon/2k3/amd64/blnsvr.exe \
|
||||
cd/Balloon/2k3/amd64/blnsvr.pdb \
|
||||
cd/Balloon/2k3/amd64/WdfCoInstaller01009.dll \
|
||||
cd/Balloon/2k3/x86/balloon.cat \
|
||||
cd/Balloon/2k3/x86/balloon.inf \
|
||||
cd/Balloon/2k3/x86/balloon.pdb \
|
||||
cd/Balloon/2k3/x86/balloon.sys \
|
||||
cd/Balloon/2k3/x86/blnsvr.exe \
|
||||
cd/Balloon/2k3/x86/blnsvr.pdb \
|
||||
cd/Balloon/2k3/x86/WdfCoInstaller01009.dll \
|
||||
cd/Balloon/2k8/amd64/balloon.cat \
|
||||
cd/Balloon/2k8/amd64/balloon.inf \
|
||||
cd/Balloon/2k8/amd64/balloon.pdb \
|
||||
cd/Balloon/2k8/amd64/balloon.sys \
|
||||
cd/Balloon/2k8/amd64/blnsvr.exe \
|
||||
cd/Balloon/2k8/amd64/blnsvr.pdb \
|
||||
cd/Balloon/2k8/amd64/WdfCoInstaller01009.dll \
|
||||
cd/Balloon/2k8R2/amd64/balloon.cat \
|
||||
cd/Balloon/2k8R2/amd64/balloon.inf \
|
||||
cd/Balloon/2k8R2/amd64/balloon.pdb \
|
||||
cd/Balloon/2k8R2/amd64/balloon.sys \
|
||||
cd/Balloon/2k8R2/amd64/blnsvr.exe \
|
||||
cd/Balloon/2k8R2/amd64/blnsvr.pdb \
|
||||
cd/Balloon/2k8R2/amd64/WdfCoInstaller01009.dll \
|
||||
cd/Balloon/2k8/x86/balloon.cat \
|
||||
cd/Balloon/2k8/x86/balloon.inf \
|
||||
cd/Balloon/2k8/x86/balloon.pdb \
|
||||
cd/Balloon/2k8/x86/balloon.sys \
|
||||
cd/Balloon/2k8/x86/blnsvr.exe \
|
||||
cd/Balloon/2k8/x86/blnsvr.pdb \
|
||||
cd/Balloon/2k8/x86/WdfCoInstaller01009.dll \
|
||||
cd/Balloon/w7/amd64/balloon.cat \
|
||||
cd/Balloon/w7/amd64/balloon.inf \
|
||||
cd/Balloon/w7/amd64/balloon.pdb \
|
||||
cd/Balloon/w7/amd64/balloon.sys \
|
||||
cd/Balloon/w7/amd64/blnsvr.exe \
|
||||
cd/Balloon/w7/amd64/blnsvr.pdb \
|
||||
cd/Balloon/w7/amd64/WdfCoInstaller01009.dll \
|
||||
cd/Balloon/w7/x86/balloon.cat \
|
||||
cd/Balloon/w7/x86/balloon.inf \
|
||||
cd/Balloon/w7/x86/balloon.pdb \
|
||||
cd/Balloon/w7/x86/balloon.sys \
|
||||
cd/Balloon/w7/x86/blnsvr.exe \
|
||||
cd/Balloon/w7/x86/blnsvr.pdb \
|
||||
cd/Balloon/w7/x86/WdfCoInstaller01009.dll \
|
||||
cd/Balloon/w8.1/amd64/balloon.cat \
|
||||
cd/Balloon/w8.1/amd64/balloon.inf \
|
||||
cd/Balloon/w8.1/amd64/balloon.pdb \
|
||||
cd/Balloon/w8.1/amd64/balloon.sys \
|
||||
cd/Balloon/w8.1/amd64/blnsvr.exe \
|
||||
cd/Balloon/w8.1/amd64/blnsvr.pdb \
|
||||
cd/Balloon/w8.1/amd64/WdfCoInstaller01011.dll \
|
||||
cd/Balloon/w8.1/x86/balloon.cat \
|
||||
cd/Balloon/w8.1/x86/balloon.inf \
|
||||
cd/Balloon/w8.1/x86/balloon.pdb \
|
||||
cd/Balloon/w8.1/x86/balloon.sys \
|
||||
cd/Balloon/w8.1/x86/blnsvr.exe \
|
||||
cd/Balloon/w8.1/x86/blnsvr.pdb \
|
||||
cd/Balloon/w8.1/x86/WdfCoInstaller01011.dll \
|
||||
cd/Balloon/w8/amd64/balloon.cat \
|
||||
cd/Balloon/w8/amd64/balloon.inf \
|
||||
cd/Balloon/w8/amd64/balloon.pdb \
|
||||
cd/Balloon/w8/amd64/balloon.sys \
|
||||
cd/Balloon/w8/amd64/blnsvr.exe \
|
||||
cd/Balloon/w8/amd64/blnsvr.pdb \
|
||||
cd/Balloon/w8/amd64/WdfCoInstaller01011.dll \
|
||||
cd/Balloon/w8/x86/balloon.cat \
|
||||
cd/Balloon/w8/x86/balloon.inf \
|
||||
cd/Balloon/w8/x86/balloon.pdb \
|
||||
cd/Balloon/w8/x86/balloon.sys \
|
||||
cd/Balloon/w8/x86/blnsvr.exe \
|
||||
cd/Balloon/w8/x86/blnsvr.pdb \
|
||||
cd/Balloon/w8/x86/WdfCoInstaller01011.dll \
|
||||
cd/Balloon/xp/x86/balloon.cat \
|
||||
cd/Balloon/xp/x86/balloon.inf \
|
||||
cd/Balloon/xp/x86/balloon.pdb \
|
||||
cd/Balloon/xp/x86/balloon.sys \
|
||||
cd/Balloon/xp/x86/blnsvr.exe \
|
||||
cd/Balloon/xp/x86/blnsvr.pdb \
|
||||
cd/Balloon/xp/x86/WdfCoInstaller01009.dll \
|
||||
cd/guest-agent/qemu-ga-x64.msi \
|
||||
cd/guest-agent/qemu-ga-x86.msi \
|
||||
cd/NetKVM/2k12/amd64/netkvm.cat \
|
||||
cd/NetKVM/2k12/amd64/netkvmco.dll \
|
||||
cd/NetKVM/2k12/amd64/netkvm.inf \
|
||||
cd/NetKVM/2k12/amd64/netkvm.pdb \
|
||||
cd/NetKVM/2k12/amd64/netkvm.sys \
|
||||
cd/NetKVM/2k12/amd64/readme.doc \
|
||||
cd/NetKVM/2k12R2/amd64/netkvm.cat \
|
||||
cd/NetKVM/2k12R2/amd64/netkvmco.dll \
|
||||
cd/NetKVM/2k12R2/amd64/netkvm.inf \
|
||||
cd/NetKVM/2k12R2/amd64/netkvm.pdb \
|
||||
cd/NetKVM/2k12R2/amd64/netkvm.sys \
|
||||
cd/NetKVM/2k12R2/amd64/readme.doc \
|
||||
cd/NetKVM/2k3/amd64/netkvm.cat \
|
||||
cd/NetKVM/2k3/amd64/netkvm.inf \
|
||||
cd/NetKVM/2k3/amd64/netkvm.pdb \
|
||||
cd/NetKVM/2k3/amd64/netkvm.sys \
|
||||
cd/NetKVM/2k3/x86/netkvm.cat \
|
||||
cd/NetKVM/2k3/x86/netkvm.inf \
|
||||
cd/NetKVM/2k3/x86/netkvm.pdb \
|
||||
cd/NetKVM/2k3/x86/netkvm.sys \
|
||||
cd/NetKVM/2k8/amd64/netkvm.cat \
|
||||
cd/NetKVM/2k8/amd64/netkvmco.dll \
|
||||
cd/NetKVM/2k8/amd64/netkvm.inf \
|
||||
cd/NetKVM/2k8/amd64/netkvm.pdb \
|
||||
cd/NetKVM/2k8/amd64/netkvm.sys \
|
||||
cd/NetKVM/2k8/amd64/readme.doc \
|
||||
cd/NetKVM/2k8R2/amd64/netkvm.cat \
|
||||
cd/NetKVM/2k8R2/amd64/netkvmco.dll \
|
||||
cd/NetKVM/2k8R2/amd64/netkvm.inf \
|
||||
cd/NetKVM/2k8R2/amd64/netkvm.pdb \
|
||||
cd/NetKVM/2k8R2/amd64/netkvm.sys \
|
||||
cd/NetKVM/2k8R2/amd64/readme.doc \
|
||||
cd/NetKVM/2k8/x86/netkvm.cat \
|
||||
cd/NetKVM/2k8/x86/netkvmco.dll \
|
||||
cd/NetKVM/2k8/x86/netkvm.inf \
|
||||
cd/NetKVM/2k8/x86/netkvm.pdb \
|
||||
cd/NetKVM/2k8/x86/netkvm.sys \
|
||||
cd/NetKVM/2k8/x86/readme.doc \
|
||||
cd/NetKVM/w7/amd64/netkvm.cat \
|
||||
cd/NetKVM/w7/amd64/netkvmco.dll \
|
||||
cd/NetKVM/w7/amd64/netkvm.inf \
|
||||
cd/NetKVM/w7/amd64/netkvm.pdb \
|
||||
cd/NetKVM/w7/amd64/netkvm.sys \
|
||||
cd/NetKVM/w7/amd64/readme.doc \
|
||||
cd/NetKVM/w7/x86/netkvm.cat \
|
||||
cd/NetKVM/w7/x86/netkvmco.dll \
|
||||
cd/NetKVM/w7/x86/netkvm.inf \
|
||||
cd/NetKVM/w7/x86/netkvm.pdb \
|
||||
cd/NetKVM/w7/x86/netkvm.sys \
|
||||
cd/NetKVM/w7/x86/readme.doc \
|
||||
cd/NetKVM/w8.1/amd64/netkvm.cat \
|
||||
cd/NetKVM/w8.1/amd64/netkvmco.dll \
|
||||
cd/NetKVM/w8.1/amd64/netkvm.inf \
|
||||
cd/NetKVM/w8.1/amd64/netkvm.pdb \
|
||||
cd/NetKVM/w8.1/amd64/netkvm.sys \
|
||||
cd/NetKVM/w8.1/amd64/readme.doc \
|
||||
cd/NetKVM/w8.1/x86/netkvm.cat \
|
||||
cd/NetKVM/w8.1/x86/netkvmco.dll \
|
||||
cd/NetKVM/w8.1/x86/netkvm.inf \
|
||||
cd/NetKVM/w8.1/x86/netkvm.pdb \
|
||||
cd/NetKVM/w8.1/x86/netkvm.sys \
|
||||
cd/NetKVM/w8.1/x86/readme.doc \
|
||||
cd/NetKVM/w8/amd64/netkvm.cat \
|
||||
cd/NetKVM/w8/amd64/netkvmco.dll \
|
||||
cd/NetKVM/w8/amd64/netkvm.inf \
|
||||
cd/NetKVM/w8/amd64/netkvm.pdb \
|
||||
cd/NetKVM/w8/amd64/netkvm.sys \
|
||||
cd/NetKVM/w8/amd64/readme.doc \
|
||||
cd/NetKVM/w8/x86/netkvm.cat \
|
||||
cd/NetKVM/w8/x86/netkvmco.dll \
|
||||
cd/NetKVM/w8/x86/netkvm.inf \
|
||||
cd/NetKVM/w8/x86/netkvm.pdb \
|
||||
cd/NetKVM/w8/x86/netkvm.sys \
|
||||
cd/NetKVM/w8/x86/readme.doc \
|
||||
cd/NetKVM/xp/x86/netkvm.cat \
|
||||
cd/NetKVM/xp/x86/netkvm.inf \
|
||||
cd/NetKVM/xp/x86/netkvm.pdb \
|
||||
cd/NetKVM/xp/x86/netkvm.sys \
|
||||
cd/qemupciserial/qemupciserial.inf \
|
||||
cd/viorng/2k12/amd64/viorng.cat \
|
||||
cd/viorng/2k12/amd64/viorngci.dll \
|
||||
cd/viorng/2k12/amd64/viorng.inf \
|
||||
cd/viorng/2k12/amd64/viorng.pdb \
|
||||
cd/viorng/2k12/amd64/viorng.sys \
|
||||
cd/viorng/2k12/amd64/viorngum.dll \
|
||||
cd/viorng/2k12/amd64/WdfCoInstaller01011.dll \
|
||||
cd/viorng/2k12R2/amd64/viorng.cat \
|
||||
cd/viorng/2k12R2/amd64/viorngci.dll \
|
||||
cd/viorng/2k12R2/amd64/viorng.inf \
|
||||
cd/viorng/2k12R2/amd64/viorng.pdb \
|
||||
cd/viorng/2k12R2/amd64/viorng.sys \
|
||||
cd/viorng/2k12R2/amd64/viorngum.dll \
|
||||
cd/viorng/2k12R2/amd64/WdfCoInstaller01011.dll \
|
||||
cd/viorng/2k8/amd64/viorng.cat \
|
||||
cd/viorng/2k8/amd64/viorngci.dll \
|
||||
cd/viorng/2k8/amd64/viorng.inf \
|
||||
cd/viorng/2k8/amd64/viorng.pdb \
|
||||
cd/viorng/2k8/amd64/viorng.sys \
|
||||
cd/viorng/2k8/amd64/viorngum.dll \
|
||||
cd/viorng/2k8/amd64/WdfCoInstaller01009.dll \
|
||||
cd/viorng/2k8R2/amd64/viorng.cat \
|
||||
cd/viorng/2k8R2/amd64/viorngci.dll \
|
||||
cd/viorng/2k8R2/amd64/viorng.inf \
|
||||
cd/viorng/2k8R2/amd64/viorng.pdb \
|
||||
cd/viorng/2k8R2/amd64/viorng.sys \
|
||||
cd/viorng/2k8R2/amd64/viorngum.dll \
|
||||
cd/viorng/2k8R2/amd64/WdfCoInstaller01009.dll \
|
||||
cd/viorng/2k8/x86/viorng.cat \
|
||||
cd/viorng/2k8/x86/viorngci.dll \
|
||||
cd/viorng/2k8/x86/viorng.inf \
|
||||
cd/viorng/2k8/x86/viorng.pdb \
|
||||
cd/viorng/2k8/x86/viorng.sys \
|
||||
cd/viorng/2k8/x86/viorngum.dll \
|
||||
cd/viorng/2k8/x86/WdfCoInstaller01009.dll \
|
||||
cd/viorng/w7/amd64/viorng.cat \
|
||||
cd/viorng/w7/amd64/viorngci.dll \
|
||||
cd/viorng/w7/amd64/viorng.inf \
|
||||
cd/viorng/w7/amd64/viorng.pdb \
|
||||
cd/viorng/w7/amd64/viorng.sys \
|
||||
cd/viorng/w7/amd64/viorngum.dll \
|
||||
cd/viorng/w7/amd64/WdfCoInstaller01009.dll \
|
||||
cd/viorng/w7/x86/viorng.cat \
|
||||
cd/viorng/w7/x86/viorngci.dll \
|
||||
cd/viorng/w7/x86/viorng.inf \
|
||||
cd/viorng/w7/x86/viorng.pdb \
|
||||
cd/viorng/w7/x86/viorng.sys \
|
||||
cd/viorng/w7/x86/viorngum.dll \
|
||||
cd/viorng/w7/x86/WdfCoInstaller01009.dll \
|
||||
cd/viorng/w8.1/amd64/viorng.cat \
|
||||
cd/viorng/w8.1/amd64/viorngci.dll \
|
||||
cd/viorng/w8.1/amd64/viorng.inf \
|
||||
cd/viorng/w8.1/amd64/viorng.pdb \
|
||||
cd/viorng/w8.1/amd64/viorng.sys \
|
||||
cd/viorng/w8.1/amd64/viorngum.dll \
|
||||
cd/viorng/w8.1/amd64/WdfCoInstaller01011.dll \
|
||||
cd/viorng/w8.1/x86/viorng.cat \
|
||||
cd/viorng/w8.1/x86/viorngci.dll \
|
||||
cd/viorng/w8.1/x86/viorng.inf \
|
||||
cd/viorng/w8.1/x86/viorng.pdb \
|
||||
cd/viorng/w8.1/x86/viorng.sys \
|
||||
cd/viorng/w8.1/x86/viorngum.dll \
|
||||
cd/viorng/w8.1/x86/WdfCoInstaller01011.dll \
|
||||
cd/viorng/w8/amd64/viorng.cat \
|
||||
cd/viorng/w8/amd64/viorngci.dll \
|
||||
cd/viorng/w8/amd64/viorng.inf \
|
||||
cd/viorng/w8/amd64/viorng.pdb \
|
||||
cd/viorng/w8/amd64/viorng.sys \
|
||||
cd/viorng/w8/amd64/viorngum.dll \
|
||||
cd/viorng/w8/amd64/WdfCoInstaller01011.dll \
|
||||
cd/viorng/w8/x86/viorng.cat \
|
||||
cd/viorng/w8/x86/viorngci.dll \
|
||||
cd/viorng/w8/x86/viorng.inf \
|
||||
cd/viorng/w8/x86/viorng.pdb \
|
||||
cd/viorng/w8/x86/viorng.sys \
|
||||
cd/viorng/w8/x86/viorngum.dll \
|
||||
cd/viorng/w8/x86/WdfCoInstaller01011.dll \
|
||||
cd/vioscsi/2k12/amd64/vioscsi.cat \
|
||||
cd/vioscsi/2k12/amd64/vioscsi.inf \
|
||||
cd/vioscsi/2k12/amd64/vioscsi.pdb \
|
||||
cd/vioscsi/2k12/amd64/vioscsi.sys \
|
||||
cd/vioscsi/2k12R2/amd64/vioscsi.cat \
|
||||
cd/vioscsi/2k12R2/amd64/vioscsi.inf \
|
||||
cd/vioscsi/2k12R2/amd64/vioscsi.pdb \
|
||||
cd/vioscsi/2k12R2/amd64/vioscsi.sys \
|
||||
cd/vioscsi/2k8/amd64/vioscsi.cat \
|
||||
cd/vioscsi/2k8/amd64/vioscsi.inf \
|
||||
cd/vioscsi/2k8/amd64/vioscsi.pdb \
|
||||
cd/vioscsi/2k8/amd64/vioscsi.sys \
|
||||
cd/vioscsi/2k8R2/amd64/vioscsi.cat \
|
||||
cd/vioscsi/2k8R2/amd64/vioscsi.inf \
|
||||
cd/vioscsi/2k8R2/amd64/vioscsi.pdb \
|
||||
cd/vioscsi/2k8R2/amd64/vioscsi.sys \
|
||||
cd/vioscsi/2k8/x86/vioscsi.cat \
|
||||
cd/vioscsi/2k8/x86/vioscsi.inf \
|
||||
cd/vioscsi/2k8/x86/vioscsi.pdb \
|
||||
cd/vioscsi/2k8/x86/vioscsi.sys \
|
||||
cd/vioscsi/w7/amd64/vioscsi.cat \
|
||||
cd/vioscsi/w7/amd64/vioscsi.inf \
|
||||
cd/vioscsi/w7/amd64/vioscsi.pdb \
|
||||
cd/vioscsi/w7/amd64/vioscsi.sys \
|
||||
cd/vioscsi/w7/x86/vioscsi.cat \
|
||||
cd/vioscsi/w7/x86/vioscsi.inf \
|
||||
cd/vioscsi/w7/x86/vioscsi.pdb \
|
||||
cd/vioscsi/w7/x86/vioscsi.sys \
|
||||
cd/vioscsi/w8.1/amd64/vioscsi.cat \
|
||||
cd/vioscsi/w8.1/amd64/vioscsi.inf \
|
||||
cd/vioscsi/w8.1/amd64/vioscsi.pdb \
|
||||
cd/vioscsi/w8.1/amd64/vioscsi.sys \
|
||||
cd/vioscsi/w8.1/x86/vioscsi.cat \
|
||||
cd/vioscsi/w8.1/x86/vioscsi.inf \
|
||||
cd/vioscsi/w8.1/x86/vioscsi.pdb \
|
||||
cd/vioscsi/w8.1/x86/vioscsi.sys \
|
||||
cd/vioscsi/w8/amd64/vioscsi.cat \
|
||||
cd/vioscsi/w8/amd64/vioscsi.inf \
|
||||
cd/vioscsi/w8/amd64/vioscsi.pdb \
|
||||
cd/vioscsi/w8/amd64/vioscsi.sys \
|
||||
cd/vioscsi/w8/x86/vioscsi.cat \
|
||||
cd/vioscsi/w8/x86/vioscsi.inf \
|
||||
cd/vioscsi/w8/x86/vioscsi.pdb \
|
||||
cd/vioscsi/w8/x86/vioscsi.sys \
|
||||
cd/vioserial/2k12/amd64/vioser.cat \
|
||||
cd/vioserial/2k12/amd64/vioser.inf \
|
||||
cd/vioserial/2k12/amd64/vioser.pdb \
|
||||
cd/vioserial/2k12/amd64/vioser.sys \
|
||||
cd/vioserial/2k12/amd64/WdfCoInstaller01011.dll \
|
||||
cd/vioserial/2k12R2/amd64/vioser.cat \
|
||||
cd/vioserial/2k12R2/amd64/vioser.inf \
|
||||
cd/vioserial/2k12R2/amd64/vioser.pdb \
|
||||
cd/vioserial/2k12R2/amd64/vioser.sys \
|
||||
cd/vioserial/2k12R2/amd64/WdfCoInstaller01011.dll \
|
||||
cd/vioserial/2k3/amd64/vioser.cat \
|
||||
cd/vioserial/2k3/amd64/vioser.inf \
|
||||
cd/vioserial/2k3/amd64/vioser.pdb \
|
||||
cd/vioserial/2k3/amd64/vioser.sys \
|
||||
cd/vioserial/2k3/amd64/WdfCoInstaller01009.dll \
|
||||
cd/vioserial/2k3/x86/vioser.cat \
|
||||
cd/vioserial/2k3/x86/vioser.inf \
|
||||
cd/vioserial/2k3/x86/vioser.pdb \
|
||||
cd/vioserial/2k3/x86/vioser.sys \
|
||||
cd/vioserial/2k3/x86/WdfCoInstaller01009.dll \
|
||||
cd/vioserial/2k8/amd64/vioser.cat \
|
||||
cd/vioserial/2k8/amd64/vioser.inf \
|
||||
cd/vioserial/2k8/amd64/vioser.pdb \
|
||||
cd/vioserial/2k8/amd64/vioser.sys \
|
||||
cd/vioserial/2k8/amd64/WdfCoInstaller01009.dll \
|
||||
cd/vioserial/2k8R2/amd64/vioser.cat \
|
||||
cd/vioserial/2k8R2/amd64/vioser.inf \
|
||||
cd/vioserial/2k8R2/amd64/vioser.pdb \
|
||||
cd/vioserial/2k8R2/amd64/vioser.sys \
|
||||
cd/vioserial/2k8R2/amd64/WdfCoInstaller01009.dll \
|
||||
cd/vioserial/2k8/x86/vioser.cat \
|
||||
cd/vioserial/2k8/x86/vioser.inf \
|
||||
cd/vioserial/2k8/x86/vioser.pdb \
|
||||
cd/vioserial/2k8/x86/vioser.sys \
|
||||
cd/vioserial/2k8/x86/WdfCoInstaller01009.dll \
|
||||
cd/vioserial/w7/amd64/vioser.cat \
|
||||
cd/vioserial/w7/amd64/vioser.inf \
|
||||
cd/vioserial/w7/amd64/vioser.pdb \
|
||||
cd/vioserial/w7/amd64/vioser.sys \
|
||||
cd/vioserial/w7/amd64/WdfCoInstaller01009.dll \
|
||||
cd/vioserial/w7/x86/vioser.cat \
|
||||
cd/vioserial/w7/x86/vioser.inf \
|
||||
cd/vioserial/w7/x86/vioser.pdb \
|
||||
cd/vioserial/w7/x86/vioser.sys \
|
||||
cd/vioserial/w7/x86/WdfCoInstaller01009.dll \
|
||||
cd/vioserial/w8.1/amd64/vioser.cat \
|
||||
cd/vioserial/w8.1/amd64/vioser.inf \
|
||||
cd/vioserial/w8.1/amd64/vioser.pdb \
|
||||
cd/vioserial/w8.1/amd64/vioser.sys \
|
||||
cd/vioserial/w8.1/amd64/WdfCoInstaller01011.dll \
|
||||
cd/vioserial/w8.1/x86/vioser.cat \
|
||||
cd/vioserial/w8.1/x86/vioser.inf \
|
||||
cd/vioserial/w8.1/x86/vioser.pdb \
|
||||
cd/vioserial/w8.1/x86/vioser.sys \
|
||||
cd/vioserial/w8.1/x86/WdfCoInstaller01011.dll \
|
||||
cd/vioserial/w8/amd64/vioser.cat \
|
||||
cd/vioserial/w8/amd64/vioser.inf \
|
||||
cd/vioserial/w8/amd64/vioser.pdb \
|
||||
cd/vioserial/w8/amd64/vioser.sys \
|
||||
cd/vioserial/w8/amd64/WdfCoInstaller01011.dll \
|
||||
cd/vioserial/w8/x86/vioser.cat \
|
||||
cd/vioserial/w8/x86/vioser.inf \
|
||||
cd/vioserial/w8/x86/vioser.pdb \
|
||||
cd/vioserial/w8/x86/vioser.sys \
|
||||
cd/vioserial/w8/x86/WdfCoInstaller01011.dll \
|
||||
cd/vioserial/xp/x86/vioser.cat \
|
||||
cd/vioserial/xp/x86/vioser.inf \
|
||||
cd/vioserial/xp/x86/vioser.pdb \
|
||||
cd/vioserial/xp/x86/vioser.sys \
|
||||
cd/vioserial/xp/x86/WdfCoInstaller01009.dll \
|
||||
cd/viostor/2k12/amd64/viostor.cat \
|
||||
cd/viostor/2k12/amd64/viostor.inf \
|
||||
cd/viostor/2k12/amd64/viostor.pdb \
|
||||
cd/viostor/2k12/amd64/viostor.sys \
|
||||
cd/viostor/2k12R2/amd64/viostor.cat \
|
||||
cd/viostor/2k12R2/amd64/viostor.inf \
|
||||
cd/viostor/2k12R2/amd64/viostor.pdb \
|
||||
cd/viostor/2k12R2/amd64/viostor.sys \
|
||||
cd/viostor/2k3/amd64/viostor.cat \
|
||||
cd/viostor/2k3/amd64/viostor.inf \
|
||||
cd/viostor/2k3/amd64/viostor.pdb \
|
||||
cd/viostor/2k3/amd64/viostor.sys \
|
||||
cd/viostor/2k3/x86/viostor.cat \
|
||||
cd/viostor/2k3/x86/viostor.inf \
|
||||
cd/viostor/2k3/x86/viostor.pdb \
|
||||
cd/viostor/2k3/x86/viostor.sys \
|
||||
cd/viostor/2k8/amd64/viostor.cat \
|
||||
cd/viostor/2k8/amd64/viostor.inf \
|
||||
cd/viostor/2k8/amd64/viostor.pdb \
|
||||
cd/viostor/2k8/amd64/viostor.sys \
|
||||
cd/viostor/2k8R2/amd64/viostor.cat \
|
||||
cd/viostor/2k8R2/amd64/viostor.inf \
|
||||
cd/viostor/2k8R2/amd64/viostor.pdb \
|
||||
cd/viostor/2k8R2/amd64/viostor.sys \
|
||||
cd/viostor/2k8/x86/viostor.cat \
|
||||
cd/viostor/2k8/x86/viostor.inf \
|
||||
cd/viostor/2k8/x86/viostor.pdb \
|
||||
cd/viostor/2k8/x86/viostor.sys \
|
||||
cd/viostor/w7/amd64/viostor.cat \
|
||||
cd/viostor/w7/amd64/viostor.inf \
|
||||
cd/viostor/w7/amd64/viostor.pdb \
|
||||
cd/viostor/w7/amd64/viostor.sys \
|
||||
cd/viostor/w7/x86/viostor.cat \
|
||||
cd/viostor/w7/x86/viostor.inf \
|
||||
cd/viostor/w7/x86/viostor.pdb \
|
||||
cd/viostor/w7/x86/viostor.sys \
|
||||
cd/viostor/w8.1/amd64/viostor.cat \
|
||||
cd/viostor/w8.1/amd64/viostor.inf \
|
||||
cd/viostor/w8.1/amd64/viostor.pdb \
|
||||
cd/viostor/w8.1/amd64/viostor.sys \
|
||||
cd/viostor/w8.1/x86/viostor.cat \
|
||||
cd/viostor/w8.1/x86/viostor.inf \
|
||||
cd/viostor/w8.1/x86/viostor.pdb \
|
||||
cd/viostor/w8.1/x86/viostor.sys \
|
||||
cd/viostor/w8/amd64/viostor.cat \
|
||||
cd/viostor/w8/amd64/viostor.inf \
|
||||
cd/viostor/w8/amd64/viostor.pdb \
|
||||
cd/viostor/w8/amd64/viostor.sys \
|
||||
cd/viostor/w8/x86/viostor.cat \
|
||||
cd/viostor/w8/x86/viostor.inf \
|
||||
cd/viostor/w8/x86/viostor.pdb \
|
||||
cd/viostor/w8/x86/viostor.sys \
|
||||
cd/viostor/xp/x86/viostor.cat \
|
||||
cd/viostor/xp/x86/viostor.inf \
|
||||
cd/viostor/xp/x86/viostor.pdb \
|
||||
cd/viostor/xp/x86/viostor.sys \
|
||||
cd/virtio-win-1.7.4_amd64.vfd \
|
||||
cd/virtio-win-1.7.4_x86.vfd \
|
||||
cd/virtio-win_license.txt
|
||||
|
||||
EXTRA_DIST = $(drivers) $(cd_files)
|
||||
|
||||
check_DATA = fake-virtio-win.iso
|
||||
|
||||
CLEANFILES += fake-virtio-win.iso
|
||||
|
||||
fake-virtio-win.iso: $(cd_files)
|
||||
$(GENISOIMAGE) -J -r -o $@ cd
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1,2 +0,0 @@
|
||||
[Version]
|
||||
DriverVer=12/04/2014,62.71.104.9600
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1,2 +0,0 @@
|
||||
[Version]
|
||||
DriverVer=12/04/2014,62.71.104.9600
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1,2 +0,0 @@
|
||||
[Version]
|
||||
DriverVer=09/16/2013,52.65.104.7000
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1,2 +0,0 @@
|
||||
[Version]
|
||||
DriverVer=09/16/2013,51.65.104.7000
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1,2 +0,0 @@
|
||||
[Version]
|
||||
DriverVer=12/04/2014,52.71.104.9600
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1,2 +0,0 @@
|
||||
[Version]
|
||||
DriverVer=12/04/2014,51.71.104.9600
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1,2 +0,0 @@
|
||||
[Version]
|
||||
DriverVer=12/04/2014,52.71.104.9600
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1,2 +0,0 @@
|
||||
[Version]
|
||||
DriverVer=12/04/2014,52.71.104.9600
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1,2 +0,0 @@
|
||||
[Version]
|
||||
DriverVer=12/04/2014,51.71.104.9600
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1,2 +0,0 @@
|
||||
[Version]
|
||||
DriverVer=12/04/2014,62.71.104.9600
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1,2 +0,0 @@
|
||||
[Version]
|
||||
DriverVer=12/04/2014,62.71.104.9600
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
@@ -1 +0,0 @@
|
||||
fake
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user