>From 3cfbfdd67e539b9f9a53cabb06eaac490c9f04fe Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Wed, 22 Jun 2011 09:29:18 +0100 Subject: [PATCH 2/3] mount-vfs: Allow 'device' parameter to be any string. Relax the type of the 'device' parameter so it no longer needs to be an actual device, but can be any string. This allows users to mount 9p filesystems where 'device' is a mount tag. --- generator/generator_actions.ml | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/generator/generator_actions.ml b/generator/generator_actions.ml index 74b6515..dfa66e0 100644 --- a/generator/generator_actions.ml +++ b/generator/generator_actions.ml @@ -2759,7 +2759,7 @@ If the C parameter is an empty string, then no options are passed (all options default to whatever the filesystem uses)."); - ("mount_vfs", (RErr, [String "options"; String "vfstype"; Device "device"; String "mountpoint"], []), 75, [], + ("mount_vfs", (RErr, [String "options"; String "vfstype"; String "device"; String "mountpoint"], []), 75, [], [], "mount a guest disk with mount options and vfstype", "\ -- 1.7.5.2