NSH mount command now recognizes the Union file system type

This commit is contained in:
Gregory Nutt 2015-06-07 08:18:07 -06:00
parent 72c5450773
commit 90679a633a

View File

@ -139,6 +139,12 @@ static const char* get_fstype(FAR struct statfs *statbuf)
break; break;
#endif #endif
#ifdef CONFIG_FS_UNIONFS
case UNIONFS_MAGIC:
fstype = "unionfs";
break;
#endif
default: default:
fstype = "Unrecognized"; fstype = "Unrecognized";
break; break;