diff options
author | Matthew Booth <mbooth@redhat.com> | 2009-06-29 16:27:05 +0100 |
---|---|---|
committer | Matthew Booth <mbooth@redhat.com> | 2009-06-29 16:27:05 +0100 |
commit | 128f822e16bb96677c75b88125e18f48d7ccedaf (patch) | |
tree | c5f09d72e73c90c02967f48151831e6c4a78fb68 /python/guestfs.py | |
parent | 103fb55e6b1428366ab31a0f17484ef1baa68e96 (diff) | |
parent | ad475104ec7fae456d3309cbf4261b893ed160bb (diff) | |
download | libguestfs-128f822e16bb96677c75b88125e18f48d7ccedaf.tar.gz libguestfs-128f822e16bb96677c75b88125e18f48d7ccedaf.tar.xz libguestfs-128f822e16bb96677c75b88125e18f48d7ccedaf.zip |
Merge commit 'et/master'
Diffstat (limited to 'python/guestfs.py')
-rw-r--r-- | python/guestfs.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/python/guestfs.py b/python/guestfs.py index e62a5271..46b02a48 100644 --- a/python/guestfs.py +++ b/python/guestfs.py @@ -1840,3 +1840,26 @@ 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) + + 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) + |