Displaying 7 results from an estimated 7 matches for "sizekb".
2004 Feb 14
0
Memdisk/floppy image question
...xisting floppy image, it creates a larger image and
copies its contents over and sets up the bootsector of the newimage
appropriately.
---- SCRIPT STARTS -----
#!/bin/bash
NEWIMAGE=dosimage.img
OLDIMAGE=oldimage.img # Name of an existing dos image
SIZEMB=8
MKDOSFS=mkdosfs # binary for mkdosfs
SIZEKB=`echo "$SIZEMB 1024 * p" | dc`
NUMSECT=`echo "$SIZEKB 2 * p" | dc`
MNTNEW=`mktemp -d /tmp/mntptnew.XXXXXX` # Create a mountpoint
MNTOLD=`mktemp -d /tmp/mntptold.XXXXXX` # Name of an existing mountpoint
# Create the filesystem
OUTLINE=`$MKDOSFS -v -C $NEWIMAGE $SIZEKB | grep hea...
2009 Aug 12
23
[PATCH 0/23] factor and const-correctness
This started as a simple warning-elimination change.
I'll get back to that series shortly ;-)
It turned into a factorization and constification exercise
during which I got a taste of ocaml. Thanks to Rich Jones
for help with a few snippets in generator.ml.
The overall result is that many previously-manually-maintained
bits from daemon/*.c functions are now hoisted into the automatically-
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...ring (Pathname, "path")], [];
protocol_limit_warning = true;
tests = [
InitISOFS, Always, TestResult (
@@ -3927,7 +3927,7 @@ Use C<guestfs_statvfs> from programs." };
{ defaults with
name = "du"; added = (1, 0, 54);
- style = RInt64 "sizekb", [Pathname "path"], [];
+ style = RInt64 "sizekb", [String (Pathname, "path")], [];
progress = true;
tests = [
InitISOFS, Always, TestResult (
@@ -3947,7 +3947,7 @@ The result is the estimated size in I<kilobytes>
{ defaults with...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator.
Rich.
2017 Feb 21
1
[PATCH] generator: Put all the daemon procedure numbers (proc_nr)
This is a follow-up to the other generator changes in:
https://www.redhat.com/archives/libguestfs/2017-February/msg00217.html
Rich.
2017 Feb 18
8
[PATCH 0/6] generator: Split up generator/actions.ml
Split up the huge generator/actions.ml into several smaller files.
Rich.
2015 May 26
6
[PATCH 0/6] Update the way that API versions are generated for the man page.
The existing mechanism was clunky, slow and used ~ 10 MB of
local disk.
Rich.