diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2010-11-13 14:42:06 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2010-11-13 14:42:06 +0000 |
commit | 79b202ca26226e0a95e3f04ac7ff91e9eb918b48 (patch) | |
tree | 0d9b880185d353bdb462656a9a69a6dbb698c54f /src/guestfs-internal.h | |
parent | a5fd85e7392b589d9d90ab515ad3e4bd1befd874 (diff) | |
download | libguestfs-79b202ca26226e0a95e3f04ac7ff91e9eb918b48.tar.gz libguestfs-79b202ca26226e0a95e3f04ac7ff91e9eb918b48.tar.xz libguestfs-79b202ca26226e0a95e3f04ac7ff91e9eb918b48.zip |
inspect: Inspection support for FreeBSD.
This adds inspection support for FreeBSD.
However this is not quite enough to allow guestfish -i freebsd.img
to work, because guestfish will try to mount the filesystems,
which cannot be done because Linux requires special mount options
for the Universal Filesystem (UFS) used by *BSD. Nevertheless
you can manually run the same commands.
Diffstat (limited to 'src/guestfs-internal.h')
-rw-r--r-- | src/guestfs-internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/guestfs-internal.h b/src/guestfs-internal.h index 299cf74e..a1dd36f1 100644 --- a/src/guestfs-internal.h +++ b/src/guestfs-internal.h @@ -159,12 +159,14 @@ enum inspect_fs_content { FS_CONTENT_LINUX_USR, FS_CONTENT_LINUX_USR_LOCAL, FS_CONTENT_LINUX_VAR, + FS_CONTENT_FREEBSD_ROOT, }; enum inspect_os_type { OS_TYPE_UNKNOWN = 0, OS_TYPE_LINUX, OS_TYPE_WINDOWS, + OS_TYPE_FREEBSD, }; enum inspect_os_distro { |