search for: 36b29a5f

Displaying 1 result from an estimated 1 matches for "36b29a5f".

Did you mean: 36b29a5
2017 Sep 14
0
[PATCH] nfsmount: support nfsvers= and vers= options
...gin: Retrying nfs mount ... nfsmount: bad option 'nfsvers' Signed-off-by: Baptiste Jonglez <baptiste.jonglez at imag.fr> --- usr/kinit/nfsmount/main.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/usr/kinit/nfsmount/main.c b/usr/kinit/nfsmount/main.c index 36b29a5f..cca9e4ec 100644 --- a/usr/kinit/nfsmount/main.c +++ b/usr/kinit/nfsmount/main.c @@ -36,12 +36,15 @@ static struct nfs_mount_data mount_data = { }; int nfs_port; +int nfs_version; static struct int_opts { char *name; int *val; } int_opts[] = { {"port", &nfs_port}, + {&qu...