X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=python%2Fguestfs.py;h=46b02a48e54987b1464d18c2862db252c7c5cebf;hb=e820df70c7c7486cc4d5cc9f3e7ddbbae195fd41;hp=e62a527168d8780cc8ab2e49c536ed6f8af02d49;hpb=e492608f2f3809a824cb70ee03ff305964b69dd7;p=libguestfs.git diff --git a/python/guestfs.py b/python/guestfs.py index e62a527..46b02a4 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) +