From 9466882092a5d91ed39b270d24e946bb55bbf0f4 Mon Sep 17 00:00:00 2001 From: Spandan Das Date: Wed, 9 Oct 2024 20:51:33 +0000 Subject: Add a tracking bug for non ext4 FS type support Change-Id: Icf00143aa979fbaee5ec68088c5431f63d852158 --- filesystem/filesystem.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'filesystem/filesystem.go') diff --git a/filesystem/filesystem.go b/filesystem/filesystem.go index 09d8fba5e..9b3eae471 100644 --- a/filesystem/filesystem.go +++ b/filesystem/filesystem.go @@ -434,7 +434,7 @@ func (f *filesystem) buildPropFile(ctx android.ModuleContext) (propFile android. // Type string that build_image.py accepts. fsTypeStr := func(t fsType) string { switch t { - // TODO(jiyong): add more types like f2fs, erofs, etc. + // TODO(372522486): add more types like f2fs, erofs, etc. case ext4Type: return "ext4" } -- cgit v1.2.3-59-g8ed1b