diff options
author | 2024-10-09 22:45:25 +0000 | |
---|---|---|
committer | 2024-10-09 22:45:25 +0000 | |
commit | 649b3a95fee016dee3c2da3ac7793848a66ec1f4 (patch) | |
tree | 35a32fc866d645461db90096c74492ec3bda091c /filesystem/filesystem.go | |
parent | 68c8b38af3284cf3c8888f1bab7a9b31946a3033 (diff) | |
parent | 9466882092a5d91ed39b270d24e946bb55bbf0f4 (diff) |
Merge "Add a tracking bug for non ext4 FS type support" into main
Diffstat (limited to 'filesystem/filesystem.go')
-rw-r--r-- | filesystem/filesystem.go | 2 |
1 files changed, 1 insertions, 1 deletions
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" } |