diff options
Diffstat (limited to 'android/variable.go')
-rw-r--r-- | android/variable.go | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/android/variable.go b/android/variable.go index 037037d6a..af2a5517c 100644 --- a/android/variable.go +++ b/android/variable.go @@ -628,8 +628,16 @@ type PartitionVariables struct { ProductCopyFiles map[string]string `json:",omitempty"` - BuildingSystemDlkmImage bool `json:",omitempty"` - SystemKernelModules []string `json:",omitempty"` + BuildingSystemDlkmImage bool `json:",omitempty"` + SystemKernelModules []string `json:",omitempty"` + SystemKernelBlocklistFile string `json:",omitempty"` + SystemKernelLoadModules []string `json:",omitempty"` + BuildingVendorDlkmImage bool `json:",omitempty"` + VendorKernelModules []string `json:",omitempty"` + VendorKernelBlocklistFile string `json:",omitempty"` + BuildingOdmDlkmImage bool `json:",omitempty"` + OdmKernelModules []string `json:",omitempty"` + OdmKernelBlocklistFile string `json:",omitempty"` } func boolPtr(v bool) *bool { |