From 917f947590c92318fee2545ba88245d0de012e31 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 16 Sep 2011 15:26:20 +0100 Subject: [PATCH] inspection: Handle /dev/root in /etc/fstab. This means "the device that holds /etc/fstab", so map it correctly. This fixes support for ttylinux and also some other guests that use /dev/root instead of a real device name. --- src/inspect_fs_unix.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/inspect_fs_unix.c b/src/inspect_fs_unix.c index 4270712..00d3cd7 100644 --- a/src/inspect_fs_unix.c +++ b/src/inspect_fs_unix.c @@ -704,6 +704,9 @@ add_fstab_entry (guestfs_h *g, struct inspect_fs *fs, else if (STRPREFIX (spec, "LABEL=")) device = guestfs_findfs_label (g, &spec[6]); /* Ignore "/.swap" (Pardus) and pseudo-devices like "tmpfs". */ + else if (STREQ (spec, "/dev/root")) + /* Resolve /dev/root to the current device. */ + device = safe_strdup (g, fs->device); else if (STRPREFIX (spec, "/dev/")) /* Resolve guest block device names. */ device = resolve_fstab_device (g, spec); -- 1.8.3.1