search for: non_lang_plugins

Displaying 20 results from an estimated 28 matches for "non_lang_plugins".

2018 Sep 11
2
Re: [PATCH nbdkit 1/4] build: Move list of plugins and filters to the configure script.
...[test "x$enable_vddk" = "xyes"]) > > +dnl List of plugins and filters. > +lang_plugins="\ > + lua \ > + ocaml \ > + perl \ > + python \ > + ruby \ > + sh \ > + tcl \ > + " > +non_lang_plugins="\ > + curl \ > + data \ > + example1 \ > + example2 \ Inconsistent spacing (space-vs-tab doesn't matter in this particular context, but it looks weird to use both) > + " > +plugins="$(echo $lang_plugins $non_lang_plugins | xargs -n1 | so...
2018 Sep 11
0
[PATCH nbdkit 1/4] build: Move list of plugins and filters to the configure script.
...vddk],[ [enable_vddk=yes]) AM_CONDITIONAL([HAVE_VDDK], [test "x$enable_vddk" = "xyes"]) +dnl List of plugins and filters. +lang_plugins="\ + lua \ + ocaml \ + perl \ + python \ + ruby \ + sh \ + tcl \ + " +non_lang_plugins="\ + curl \ + data \ + example1 \ + example2 \ + example3 \ + example4 \ + ext2 \ + file \ + guestfs \ + gzip \ + libvirt \ + memory \ + nbd \ + null \ + pattern \ + random \ + split \ + streaming \ + tar \ + vddk \ + xz \ + zero \ + " +plugins="$(echo $lang_plug...
2018 Sep 11
0
Re: [PATCH nbdkit 1/4] build: Move list of plugins and filters to the configure script.
...uot;xyes"]) > >+dnl List of plugins and filters. > >+lang_plugins="\ > >+ lua \ > >+ ocaml \ > >+ perl \ > >+ python \ > >+ ruby \ > >+ sh \ > >+ tcl \ > >+ " > >+non_lang_plugins="\ > >+ curl \ > >+ data \ > >+ example1 \ > >+ example2 \ > > Inconsistent spacing (space-vs-tab doesn't matter in this particular > context, but it looks weird to use both) Ooops. Wasn't visible in emacs, but I can fix that next time....
2018 Sep 11
7
[PATCH nbdkit 0/4] tests: Move common functions into tests/functions.sh
Combine much common code into tests/functions.sh. Patch 1: Preparation for patch 3. Patch 2: Fix a long-standing bug in how man pages links are generated. Patch 3: Common code for iterating a test function over every plugin. Patch 4: Common code for starting nbdkit in a test and waiting for the PID file to appear. This is the largest and most complex of the patches but is
2019 Sep 28
0
[PATCH nbdkit v2 2/4] Rename nbdkit-reflection-plugin to nbdkit-info-plugin.
....flection-base64.sh => test-info-base64.sh} | 10 ++--- ...est-reflection-raw.sh => test-info-raw.sh} | 6 +-- 10 files changed, 76 insertions(+), 76 deletions(-) diff --git a/configure.ac b/configure.ac index 8e38b2d..a6387d5 100644 --- a/configure.ac +++ b/configure.ac @@ -837,6 +837,7 @@ non_lang_plugins="\ full \ guestfs \ gzip \ + info \ iso \ libvirt \ linuxdisk \ @@ -846,7 +847,6 @@ non_lang_plugins="\ partitioning \ pattern \ random \ - reflection \ split \ ssh \...
2018 Sep 13
8
[PATCH v2 nbdkit 0/5] tests: Move common functions into tests/functions.sh
v1 was here: https://www.redhat.com/archives/libguestfs/2018-September/msg00057.html v2: - Fix tab vs spaces in configure.ac. - To generate list of plugins, use printf instead of xargs. - Use 'source ./functions.sh' instead of 'source functions'. - functions.sh: Consistent quoting in foreach_plugin function. - functions.sh: Change the contract of start_nbdkit so it
2019 May 15
2
[nbdkit PATCH] Introduce cacheextents filter
...filters/cacheextents/cacheextents.c create mode 100644 filters/cacheextents/nbdkit-cacheextents-filter.pod diff --git a/configure.ac b/configure.ac index 58031f3c6d86..8db5a4cac3c5 100644 --- a/configure.ac +++ b/configure.ac @@ -825,6 +825,7 @@ plugins="$(echo $(printf %s\\n $lang_plugins $non_lang_plugins | sort -u))" filters="\ blocksize \ cache \ + cacheextents \ cow \ delay \ error \ @@ -900,6 +901,7 @@ AC_CONFIG_FILES([Makefile filters/Makefile filters/blocksize/Makefile filters/c...
2019 Sep 28
9
[PATCH nbdkit v2 0/4] info: Add mode for sending back server time.
v1 was: https://www.redhat.com/archives/libguestfs/2019-September/thread.html#00361 v2: - Adds a patch to rename the reflection plugin to the info plugin. - Adds tests. Rich.
2020 Mar 16
1
[PATCH nbdkit] New tmpdisk plugin.
Unfinished (needs tests). This is my attempt to make a "remote tmpfs" plugin as outlined in this prior email: https://www.redhat.com/archives/libguestfs/2020-March/msg00134.html Although it would be possible to construct something a bit like this using existing plugins and filters (perhaps with some new features in those filters) I think it may be nicer to have a dedicated plugin for
2019 Sep 15
0
[PATCH nbdkit 1/4] Add reflection plugin.
...ests/test-reflection-base64.sh | 98 +++++++ tests/test-reflection-raw.sh | 68 +++++ 10 files changed, 614 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 4af403c..8261a7f 100644 --- a/configure.ac +++ b/configure.ac @@ -846,6 +846,7 @@ non_lang_plugins="\ partitioning \ pattern \ random \ + reflection \ split \ ssh \ streaming \ @@ -922,6 +923,7 @@ AC_CONFIG_FILES([Makefile plugins/perl/Makefile plugins/python/Makefile plugins/r...
2019 Mar 06
0
[PATCH nbdkit] Add ssh plugin using libssh.
...H_LIBS]) + ], + [AC_MSG_WARN([libssh not found, ssh plugin will be disabled])]) +]) +AM_CONDITIONAL([HAVE_SSH],[test "x$SSH_LIBS" != "x"]) + dnl Check for genisoimage or mkisofs dnl (only if you want to compile the iso plugin). ISOPROG="no" @@ -800,6 +815,7 @@ non_lang_plugins="\ partitioning \ pattern \ random \ + ssh \ split \ streaming \ tar \ @@ -872,6 +888,7 @@ AC_CONFIG_FILES([Makefile plugins/rust/Cargo.toml plugins/rust/Makefile plugins/sh/Makef...
2019 Mar 06
2
[PATCH nbdkit] Add ssh plugin using libssh.
This adds a simple plugin using libssh (not libssh2). The intended use for this is with virt-v2v when sourcing guests from VMware over SSH. We've had several years of problems getting our libssh-based driver into qemu. By putting it into nbdkit instead we can bypass that. However this also lets us combine ssh access with filters, in particular the recently written ‘rate’ filter. Rich.
2020 Mar 17
2
[PATCH nbdkit v3] New tmpdisk plugin.
v2 was here: https://www.redhat.com/archives/libguestfs/2020-March/msg00154.html v3: - Micro-optimize tmpdir. - Quote $disk in default command shell fragment. - Don't redirect mkfs output to /dev/null. Instead use exec </dev/null >/dev/null before the shell fragment. We may want to do this in other places where we run external shell scripts, or more generally for all
2019 May 15
6
[nbdkit PATCH v2] Introduce cacheextents filter
...de 100644 filters/cacheextents/nbdkit-cacheextents-filter.pod create mode 100755 tests/test-cacheextents.sh diff --git a/configure.ac b/configure.ac index 58031f3c6d86..8db5a4cac3c5 100644 --- a/configure.ac +++ b/configure.ac @@ -825,6 +825,7 @@ plugins="$(echo $(printf %s\\n $lang_plugins $non_lang_plugins | sort -u))" filters="\ blocksize \ cache \ + cacheextents \ cow \ delay \ error \ @@ -900,6 +901,7 @@ AC_CONFIG_FILES([Makefile filters/Makefile filters/blocksize/Makefile filters/c...
2020 Mar 17
2
[PATCH nbdkit v2] New tmpdisk plugin.
...+L<nbdkit-loop(1)>, +L<nbdkit-tls(1)>, +L<mkfs(8)>. + +=head1 AUTHORS + +Richard W.M. Jones + +=head1 COPYRIGHT + +Copyright (C) 2018-2020 Red Hat Inc. diff --git a/configure.ac b/configure.ac index dd9ca765..7b5e61e3 100644 --- a/configure.ac +++ b/configure.ac @@ -86,6 +86,7 @@ non_lang_plugins="\ ssh \ streaming \ tar \ + tmpdisk \ vddk \ zero \ " @@ -1016,6 +1017,7 @@ AC_CONFIG_FILES([Makefile plugins/streaming/Makefile plugins/tar/Makefile plugins/tcl/Makefile +...
2019 Jun 11
5
[nbdkit PATCH v2] Introduce cacheextents filter
...de 100644 filters/cacheextents/nbdkit-cacheextents-filter.pod create mode 100755 tests/test-cacheextents.sh diff --git a/configure.ac b/configure.ac index 58031f3c6d86..8db5a4cac3c5 100644 --- a/configure.ac +++ b/configure.ac @@ -825,6 +825,7 @@ plugins="$(echo $(printf %s\\n $lang_plugins $non_lang_plugins | sort -u))" filters="\ blocksize \ cache \ + cacheextents \ cow \ delay \ error \ @@ -900,6 +901,7 @@ AC_CONFIG_FILES([Makefile filters/Makefile filters/blocksize/Makefile filters/c...
2018 Sep 17
0
[PATCH nbdkit v3 3/3] Add partitioning plugin.
...0 + tests/test-partitioning1.sh | 83 ++ tests/test-partitioning2.sh | 75 ++ 12 files changed, 1381 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 2a4879a..3f99459 100644 --- a/configure.ac +++ b/configure.ac @@ -573,6 +573,7 @@ non_lang_plugins="\ memory \ nbd \ null \ + partitioning \ pattern \ random \ split \ @@ -630,6 +631,7 @@ AC_CONFIG_FILES([Makefile plugins/nbd/Makefile plugins/null/Makefile plugins/ocaml/Makefil...
2020 Aug 14
2
[PATCH nbdkit] New ondemand plugin.
...instead. When a new client connects, a blank, sparse file of the required size is created in C<$TMPDIR> (or F</var/tmp>). L<mkfs(8)> is then run on diff --git a/configure.ac b/configure.ac index fee6fe9a..5d74251a 100644 --- a/configure.ac +++ b/configure.ac @@ -81,6 +81,7 @@ non_lang_plugins="\ memory \ nbd \ null \ + ondemand \ partitioning \ pattern \ random \ @@ -1119,6 +1120,7 @@ AC_CONFIG_FILES([Makefile plugins/nbd/Makefile plugins/null/Makefile plugins/ocaml/Ma...
2019 Feb 22
0
[PATCH nbdkit v3 4/4] Add linuxdisk plugin.
...gin: * Add multiple dir merging. +nbdkit-linuxdisk-plugin: + +* Add multiple dir merging (in e2fsprogs mke2fs). + Suggestions for filters ----------------------- diff --git a/configure.ac b/configure.ac index 229e38c..4487b5e 100644 --- a/configure.ac +++ b/configure.ac @@ -793,6 +793,7 @@ non_lang_plugins="\ gzip \ iso \ libvirt \ + linuxdisk \ memory \ nbd \ null \ @@ -855,6 +856,7 @@ AC_CONFIG_FILES([Makefile plugins/gzip/Makefile plugins/iso/Makefile plugins/libvirt/Makefile +...
2018 Sep 17
4
[PATCH nbdkit 0/3] Add partitioning plugin.
nbdkit partitioning boot.img swap.img root.img ... creates a virtual disk by adding a partition table. In ancient times Xen used to do this. Rich.