search for: generated_sources

Displaying 8 results from an estimated 8 matches for "generated_sources".

2019 Jul 08
5
[PATCH 0/4] p2v: more bits of independence (#3)
These are more small bits to make p2v more independent, and they will help after the split. Pino Toscano (4): p2v: clean also the test images p2v: consider p2v-config.h as generated source p2v: fix tests with srcdir!=builddir p2v: split appliance tests in own variable p2v/Makefile.am | 13 +++++++++---- p2v/test-virt-p2v-docs.sh | 2 +- p2v/test-virt-p2v-nbdkit.sh | 4
2019 Jul 03
7
[PATCH 0/6] p2v: make it more independent (part #2)
As preliminary steps in splitting virt-p2v to an own repository, continue making p2v more independent within libguestfs. This is accomplished by the following changes: - have only the authors in the about dialog, and read them from a local AUTHORS file - few more cleanups This is still not complete, although I believe most of the work needed is done, and it still makes p2v usable within
2019 Jul 01
0
[PATCH 1/6] p2v: move kernel config to perl script
...clude $(top_srcdir)/subdir-rules.mk generator_built = \ about-authors.c \ - config.c \ - kernel-config.c \ - p2v-config.h \ virt-p2v-kernel-config.pod BUILT_SOURCES = \ @@ -53,6 +50,7 @@ EXTRA_DIST = \ # consume system entropy to regenerate. CLEANFILES += \ $(dependencies_files) \ + $(generated_sources) \ stamp-test-virt-p2v-pxe-data-files \ stamp-test-virt-p2v-pxe-kernel \ test-virt-p2v-pxe.authorized_keys \ @@ -82,7 +80,6 @@ noinst_PROGRAMS = virt-p2v virt_p2v_SOURCES = \ about-authors.c \ - config.c \ conversion.c \ cpuid.c \ gui.c \ @@ -91,7 +88,6 @@ virt_p2v_SOURCES = \ in...
2019 Dec 03
0
[p2v PATCH 6/6] Remove whole-file.c
...changed, 1 insertion(+), 99 deletions(-) delete mode 100644 whole-file.c diff --git a/Makefile.am b/Makefile.am index 02e3288..7649511 100644 --- a/Makefile.am +++ b/Makefile.am @@ -124,8 +124,7 @@ virt_p2v_SOURCES = \ physical-xml.c \ rtc.c \ ssh.c \ - utils.c \ - whole-file.c + utils.c generated_sources = \ config.c \ diff --git a/p2v.h b/p2v.h index adace84..a14edc5 100644 --- a/p2v.h +++ b/p2v.h @@ -125,9 +125,6 @@ extern char *get_if_addr (const char *if_name); extern char *get_if_vendor (const char *if_name, int truncate); extern void wait_network_online (const struct config *); -/* whol...
2019 Jul 01
8
[PATCH 0/6] p2v: start making it independent
As preliminary steps in splitting virt-p2v to an own repository, start making p2v more independent within libguestfs. This is accomplished by the following changes: - generate the p2v kernel config sources & docs at build time using a Perl script, rather than the generator (so no need for OCaml when building from git, and no generated sources in dist tarballs) - create two local test
2019 Dec 03
7
[p2v PATCH 0/6] Use GLib a bit more
In an effort to reduce the code, start to use few bits of GLib: - replace the gnulib c-type module - replace the gnulib getprogname module - use g_spawn_sync to launch curl, and drop a file reading function Pino Toscano (6): Include glib.h in p2v.h Use g_ascii_isspace instead of c_isspace from gnulib Use g_get_prgname instead of getprogname from gnulib build: remove no more used gnulib
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
2019 Jul 09
7
[PATCH 0/5] Split virt-p2v in own repository
Hi, as it was already discussed on this list, here it is my attempt in splitting virt-p2v in an own repository. Sadly there are things that must be copied from libguestfs, as it cannot be avoided. The approach taken was to run a script (will send separately) to just get the "p2v" subdirectory with its history as own repository, and then add in few followup commits all the bits needed