From c6d6f5ae1b76ec9aa5c540906aeed73d25d13eb9 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Mon, 29 Jun 2009 15:18:17 +0100 Subject: Generated code for 'initrd-list'. --- python/guestfs.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'python/guestfs.py') diff --git a/python/guestfs.py b/python/guestfs.py index e62a5271..0f6fc3a8 100644 --- a/python/guestfs.py +++ b/python/guestfs.py @@ -1840,3 +1840,19 @@ class GuestFS: """ return libguestfsmod.du (self._o, path) + def initrd_list (self, path): + u"""This command lists out files contained in an initrd. + + The files are listed without any initial "/" character. + The files are listed in the order they appear (not + necessarily alphabetical). Directory names are listed as + separate items. + + Old Linux kernels (2.4 and earlier) used a compressed + ext2 filesystem as initrd. We *only* support the newer + initramfs format (compressed cpio files). + + This function returns a list of strings. + """ + return libguestfsmod.initrd_list (self._o, path) + -- cgit From 5d6b6a3fbbfea19c606b984bac9cf64b6b81cafe Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Mon, 29 Jun 2009 16:05:22 +0100 Subject: Generated code for mount-loop command. --- python/guestfs.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'python/guestfs.py') diff --git a/python/guestfs.py b/python/guestfs.py index 0f6fc3a8..46b02a48 100644 --- a/python/guestfs.py +++ b/python/guestfs.py @@ -1856,3 +1856,10 @@ class GuestFS: """ return libguestfsmod.initrd_list (self._o, path) + def mount_loop (self, file, mountpoint): + u"""This command lets you mount "file" (a filesystem image + in a file) on a mount point. It is entirely equivalent + to the command "mount -o loop file mountpoint". + """ + return libguestfsmod.mount_loop (self._o, file, mountpoint) + -- cgit