diff options
| author | 2023-09-28 16:38:28 +0000 | |
|---|---|---|
| committer | 2023-09-28 16:38:28 +0000 | |
| commit | 6ed1e0fd590f8866e3933c20aa85f168c5b62869 (patch) | |
| tree | e35f76f06d1f40b1eb608e1e25d0cdcf898acee0 /android/variable.go | |
| parent | 2201343fceb6712c6901bcb5e95445de5d969a53 (diff) | |
| parent | b5055394a98e26bdf86436956dcacbee014ae2fa (diff) | |
Merge "AVB and selinux support in partitions" into main
Diffstat (limited to 'android/variable.go')
| -rw-r--r-- | android/variable.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/android/variable.go b/android/variable.go index 44a8fd7f3..73a4b2c61 100644 --- a/android/variable.go +++ b/android/variable.go @@ -514,6 +514,12 @@ type PartitionVariables struct { ProductBaseFsPath string `json:",omitempty"` ProductHeadroom string `json:",omitempty"` ProductVerityPartition string `json:",omitempty"` + + BoardAvbAddHashtreeFooterArgs string `json:",omitempty"` + BoardAvbKeyPath string `json:",omitempty"` + BoardAvbAlgorithm string `json:",omitempty"` + BoardAvbRollbackIndex string `json:",omitempty"` + BoardAvbRollbackIndexLocation string `json:",omitempty"` } TargetUserimagesUseExt2 bool `json:",omitempty"` TargetUserimagesUseExt3 bool `json:",omitempty"` @@ -536,6 +542,8 @@ type PartitionVariables struct { BoardBuildGkiBootImageWithoutRamdisk bool `json:",omitempty"` ProductUseDynamicPartitionSize bool `json:",omitempty"` CopyImagesForTargetFilesZip bool `json:",omitempty"` + + BoardAvbEnable bool `json:",omitempty"` } func boolPtr(v bool) *bool { |