diff options
author | 2023-01-03 16:11:20 +0000 | |
---|---|---|
committer | 2023-01-10 15:38:31 +0000 | |
commit | 000e3a396ca89155e817841195d44b9aeda1155f (patch) | |
tree | 6f249e94f2f684b7bae1fb86ee6ecd7d9b0e23ff /filesystem/filesystem.go | |
parent | 57b1e4064be7b3a0976da7a5c474ebef9f65312d (diff) |
[avb_footer] Add avb_gen_vbmeta_image to generate vbmeta image
This is the reland of the change aosp/2375848. The build of initrd on
linux-x86 that has incorrect format (b/264940248) is disabled in this
cl.
Bug: 260821553
Test: m microdroid_kernel_signed and inspect the output using `avbtool
info_image --image <output>`
Change-Id: I3ad2419b7132cde4b2fc34ddfa09ec5ba2166819
Diffstat (limited to 'filesystem/filesystem.go')
-rw-r--r-- | filesystem/filesystem.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/filesystem/filesystem.go b/filesystem/filesystem.go index c73c4a42d..25b8fe89c 100644 --- a/filesystem/filesystem.go +++ b/filesystem/filesystem.go @@ -35,6 +35,7 @@ func registerBuildComponents(ctx android.RegistrationContext) { ctx.RegisterModuleType("android_filesystem", filesystemFactory) ctx.RegisterModuleType("android_system_image", systemImageFactory) ctx.RegisterModuleType("avb_add_hash_footer", avbAddHashFooterFactory) + ctx.RegisterModuleType("avb_gen_vbmeta_image", avbGenVbmetaImageFactory) } type filesystem struct { |