Re: [Libguestfs] extract NTFS Master File Table for analysis

2016-02-18 Thread noxdafox
On 02/02/16 21:35, Richard W.M. Jones wrote: On Tue, Feb 02, 2016 at 07:40:12PM +0200, noxdafox wrote: Greetings, I'm playing around an idea and I'd like to ask you some questions. I'd like to extract the MFT table from a disk image file. The idea is to employ it to build a sort of reverse

Re: [Libguestfs] [PATCH 3/3] Add and use an helper error function

2016-02-18 Thread Richard W.M. Jones
All good, ACK series. Thanks, Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com libguestfs lets you edit virtual machines. Supports shell scripting, bindings from many languages.

[Libguestfs] [PATCH 3/3] Add and use an helper error function

2016-02-18 Thread Pino Toscano
Simplier version of what is implemented in Common_utils in libguestfs, only adding the application prefix and handling the exit. --- src/build.ml | 20 +--- src/dpkg.ml| 4 +--- src/kernel.ml | 27 ++ src/package_handler.ml | 7

[Libguestfs] [PATCH 1/3] ext2: simplify tracking of visited modules

2016-02-18 Thread Pino Toscano
When visiting the modules we need to copy into the initrd, use a simplier StringSet instead of a Hashtbl with bool values; this also avoids the need for a separate variable with the number of modules visited. --- src/ext2_initrd.ml | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-)

[Libguestfs] [PATCH 0/3] supermin: miscellaneous cleanups

2016-02-18 Thread Pino Toscano
Hi, few cleanups in the supermin codebase; no actual functional change. Thanks, -- Pino Toscano (3): ext2: simplify tracking of visited modules utils: remove unused run_python function Add and use an helper error function src/build.ml | 20 +--- src/dpkg.ml

[Libguestfs] [PATCH 2/3] utils: remove unused run_python function

2016-02-18 Thread Pino Toscano
No more used since the supermin 5 rewrite; RPM code either directly invoked rpm(1), or now uses librpm. --- src/utils.ml | 9 - src/utils.mli | 5 - 2 files changed, 14 deletions(-) diff --git a/src/utils.ml b/src/utils.ml index 7ae24bd..87c9cf7 100644 --- a/src/utils.ml +++