diff options
Diffstat (limited to 'filesystem/bootimg.go')
-rw-r--r-- | filesystem/bootimg.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/filesystem/bootimg.go b/filesystem/bootimg.go index a1c4bce58..5ab0c6899 100644 --- a/filesystem/bootimg.go +++ b/filesystem/bootimg.go @@ -244,6 +244,7 @@ func (b *bootimg) GenerateAndroidBuildActions(ctx android.ModuleContext) { Bootconfig: b.getBootconfigPath(ctx), Output: output, PropFileForMiscInfo: b.buildPropFileForMiscInfo(ctx), + HeaderVersion: proptools.String(b.properties.Header_version), }) extractedPublicKey := android.PathForModuleOut(ctx, b.partitionName()+".avbpubkey") @@ -292,6 +293,7 @@ type BootimgInfo struct { Bootconfig android.Path Output android.Path PropFileForMiscInfo android.Path + HeaderVersion string } func (b *bootimg) getKernelPath(ctx android.ModuleContext) android.Path { |