diff options
| author | 2024-10-02 23:37:58 +0000 | |
|---|---|---|
| committer | 2024-10-02 23:37:58 +0000 | |
| commit | 03f6f4eac08598bf270da5bd50a117aa05d02110 (patch) | |
| tree | 8f5c303e37ef32f291ea339990a7752d598e23a0 /filesystem/filesystem.go | |
| parent | 76e6a927699c5abbfa5b41c3ba6a36ace994813b (diff) | |
| parent | 98047cfd07944b297a12d173453bc984806760d2 (diff) | |
Merge "Introduce soong_filesystem_creator module type" into main
Diffstat (limited to 'filesystem/filesystem.go')
| -rw-r--r-- | filesystem/filesystem.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/filesystem/filesystem.go b/filesystem/filesystem.go index 035399282..a26fac7fc 100644 --- a/filesystem/filesystem.go +++ b/filesystem/filesystem.go @@ -37,7 +37,7 @@ func init() { func registerBuildComponents(ctx android.RegistrationContext) { ctx.RegisterModuleType("android_filesystem", filesystemFactory) ctx.RegisterModuleType("android_filesystem_defaults", filesystemDefaultsFactory) - ctx.RegisterModuleType("android_system_image", systemImageFactory) + ctx.RegisterModuleType("android_system_image", SystemImageFactory) ctx.RegisterModuleType("avb_add_hash_footer", avbAddHashFooterFactory) ctx.RegisterModuleType("avb_add_hash_footer_defaults", avbAddHashFooterDefaultsFactory) ctx.RegisterModuleType("avb_gen_vbmeta_image", avbGenVbmetaImageFactory) @@ -49,7 +49,7 @@ type filesystem struct { android.PackagingBase android.DefaultableModuleBase - properties filesystemProperties + properties FilesystemProperties // Function that builds extra files under the root directory and returns the files buildExtraFiles func(ctx android.ModuleContext, root android.OutputPath) android.OutputPaths @@ -71,7 +71,7 @@ type symlinkDefinition struct { Name *string } -type filesystemProperties struct { +type FilesystemProperties struct { // When set to true, sign the image with avbtool. Default is false. Use_avb *bool |