search for: configint

Displaying 5 results from an estimated 5 matches for "configint".

2019 Jul 01
0
[PATCH 1/6] p2v: move kernel config to perl script
...h Floor, Boston, MA 02110-1301 USA. + +use strict; +use warnings; + +use Class::Struct; +use Getopt::Long; +use List::Util qw(any); + +struct ConfigSection => +{ + name => '$', + elements => '@', +}; + +struct ConfigString => +{ + name => '$', +}; + +struct ConfigInt => +{ + name => '$', + value => '$', +}; + +struct ConfigBool => +{ + name => '$', +}; + +struct ConfigUInt64 => +{ + name => '$', +}; + +struct ConfigUnsigned => +{ + name => '$', +}; + +struct ConfigEnum => +{ + name =&gt...
2018 Jun 29
3
p2v: Various cleanups.
These are a prelude to fixing https://bugzilla.redhat.com/show_bug.cgi?id=1590220 A lot of the virt-p2v configuration code was duplicated manually. These changes make sure that most of it is generated. Rich.
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
2010 Dec 07
1
[ANNOUNCE] xorg-server 1.9.99.901
...s/sun_init.c | 7 +- hw/xfree86/os-support/solaris/sun_vid.c | 5 +- hw/xfree86/os-support/sysv/Makefile.am | 1 - hw/xfree86/os-support/sysv/sysv_init.c | 252 -- hw/xfree86/os-support/sysv/sysv_video.c | 315 --- hw/xfree86/parser/Configint.h | 9 - hw/xfree86/parser/DRI.c | 64 - hw/xfree86/parser/Flags.c | 10 +- hw/xfree86/parser/Monitor.c | 7 - hw/xfree86/parser/scan.c | 68 +- hw/xfree86/parser/wr...
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