From 91c063f46a2f107afeeb25c45e3a45c3724ffa35 Mon Sep 17 00:00:00 2001 From: lemonYo Date: Sat, 15 Apr 2023 09:54:58 +0800 Subject: [PATCH] fstab add overlay type Signed-off-by: lemonYo --- interfaces/innerkits/fs_manager/fstab_mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces/innerkits/fs_manager/fstab_mount.c b/interfaces/innerkits/fs_manager/fstab_mount.c index dd6c322b..5d18c84e 100755 --- a/interfaces/innerkits/fs_manager/fstab_mount.c +++ b/interfaces/innerkits/fs_manager/fstab_mount.c @@ -58,7 +58,7 @@ bool IsSupportedFilesystem(const char *fsType) { bool supported = false; if (fsType != NULL) { - static const char *supportedFilesystem[] = {"ext4", "f2fs", NULL}; + static const char *supportedFilesystem[] = {"ext4", "f2fs", "overlay", NULL}; int index = 0; while (supportedFilesystem[index] != NULL) { if (strcmp(supportedFilesystem[index++], fsType) == 0) { -- GitLab