diff --git a/fs/mount/fs_gettype.c b/fs/mount/fs_gettype.c index b5894a698f..b5bfb35da7 100644 --- a/fs/mount/fs_gettype.c +++ b/fs/mount/fs_gettype.c @@ -147,6 +147,12 @@ FAR const char *fs_gettype(FAR struct statfs *statbuf) break; #endif +#ifdef CONFIG_FS_ZIPFS + case ZIPFS_MAGIC: + fstype = "zipfs"; + break; +#endif + default: fstype = "Unrecognized"; break;