From 90679a633ab19fe5522d711d71e159286377cc6b Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 7 Jun 2015 08:18:07 -0600 Subject: [PATCH] NSH mount command now recognizes the Union file system type --- nshlib/nsh_mntcmds.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nshlib/nsh_mntcmds.c b/nshlib/nsh_mntcmds.c index 6857947c5..c42cf5eeb 100644 --- a/nshlib/nsh_mntcmds.c +++ b/nshlib/nsh_mntcmds.c @@ -139,6 +139,12 @@ static const char* get_fstype(FAR struct statfs *statbuf) break; #endif +#ifdef CONFIG_FS_UNIONFS + case UNIONFS_MAGIC: + fstype = "unionfs"; + break; +#endif + default: fstype = "Unrecognized"; break;