Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8235220a authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Expose TargetFSConfigGen to DeviceConfig from Make"

parents 34df7144 71c74607
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1048,3 +1048,7 @@ func (c *config) ProductHiddenAPIStubsSystem() []string {
func (c *config) ProductHiddenAPIStubsTest() []string {
	return c.productVariables.ProductHiddenAPIStubsTest
}

func (c *deviceConfig) TargetFSConfigGen() *string {
	return c.config.productVariables.TargetFSConfigGen
}
+2 −0
Original line number Diff line number Diff line
@@ -287,6 +287,8 @@ type productVariables struct {
	ProductHiddenAPIStubs       []string `json:",omitempty"`
	ProductHiddenAPIStubsSystem []string `json:",omitempty"`
	ProductHiddenAPIStubsTest   []string `json:",omitempty"`

	TargetFSConfigGen *string `json:",omitempty"`
}

func boolPtr(v bool) *bool {