Merge "Add a variable that indicates build-time debugfs restrictions"
This commit is contained in:
commit
929cac7433
2 changed files with 6 additions and 0 deletions
|
@ -1498,6 +1498,10 @@ func (c *deviceConfig) BuildBrokenTrebleSyspropNeverallow() bool {
|
|||
return c.config.productVariables.BuildBrokenTrebleSyspropNeverallow
|
||||
}
|
||||
|
||||
func (c *deviceConfig) BuildDebugfsRestrictionsEnabled() bool {
|
||||
return c.config.productVariables.BuildDebugfsRestrictionsEnabled
|
||||
}
|
||||
|
||||
func (c *deviceConfig) BuildBrokenVendorPropertyNamespace() bool {
|
||||
return c.config.productVariables.BuildBrokenVendorPropertyNamespace
|
||||
}
|
||||
|
|
|
@ -385,6 +385,8 @@ type productVariables struct {
|
|||
BuildBrokenTrebleSyspropNeverallow bool `json:",omitempty"`
|
||||
BuildBrokenVendorPropertyNamespace bool `json:",omitempty"`
|
||||
|
||||
BuildDebugfsRestrictionsEnabled bool `json:",omitempty"`
|
||||
|
||||
RequiresInsecureExecmemForSwiftshader bool `json:",omitempty"`
|
||||
|
||||
SelinuxIgnoreNeverallows bool `json:",omitempty"`
|
||||
|
|
Loading…
Reference in a new issue