search for: hostcpu

Displaying 6 results from an estimated 6 matches for "hostcpu".

Did you mean: host_cpu
2013 Sep 06
2
[PATCH supermin 0/2] helper: Implement device trees.
This two-part patch for supermin implements device trees (for ARM). The first patch introduces a more rational way to handle command line arguments in 'supermin-helper'. See the commit message for details. The old style is still supported for compatibility. The second patch adds an extra supermin-helper --dtb parameter specifying a wildcard. A device tree file which matches the
2010 Oct 01
3
[PATCH 1/2] Add -u and -g options to febootstrap-supermin-helper
Bash automatically resets euid to uid when it executes. This can mean that the effective user id of a program at the point it calls febootstrap-supermin-helper can be lost if any part of execution chain involved bash. This in turn can result in: * the generation of an incorrect checksum, which contains the uid. * the generation of supermin files with differing owners The -u and -g options allow
2010 Mar 11
2
[PATCH FOR DISCUSSION ONLY] Rewrite libguestfs-supermin-helper in C.
...s" + +/* Buffer size used in copy operations throughout. Large for + * greatest efficiency. + */ +#define BUFFER_SIZE 65536 + +static struct timeval start_t; +static int verbose = 0; + +static void print_timestamped_message (const char *fs, ...); +static const char *create_kernel (const char *hostcpu, const char *kernel); +static void create_appliance (const char *sourcedir, const char *hostcpu, const char *repo, const char *modpath, const char *initrd); + +enum { HELP_OPTION = CHAR_MAX + 1 }; + +static const char *options = "vV"; +static struct option long_options[] = { + { "he...
2013 Feb 27
3
[RFC]vhost/vhost-net backend for PCI cards
We are implementing a driver for a PCIe card that runs Linux. This card needs "virtual" network/disk/console devices, so we have reused the virtio devices on on the card and provided a host backend that interacts with the virtio devices through the card's driver. this approach is very much like what was proposed on this thread
2013 Feb 27
3
[RFC]vhost/vhost-net backend for PCI cards
We are implementing a driver for a PCIe card that runs Linux. This card needs "virtual" network/disk/console devices, so we have reused the virtio devices on on the card and provided a host backend that interacts with the virtio devices through the card's driver. this approach is very much like what was proposed on this thread
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
..., because we only care that the Linux - * kernel can read it. - * - * This version contains some improvements over the C version written - * for libguestfs, in that we can have multiple base images (or - * hostfiles) or use a directory to store these files. - */ -void -create_appliance (const char *hostcpu, - char **inputs, int nr_inputs, - const char *whitelist, - const char *modpath, - const char *initrd, - const char *appliance, - struct writer *writer) -{ - writer->wr_start (hostcpu, applianc...