TARGET_FS_CONFIG_GEN is a list, not a single path
Bug: 130787336
Test: m oemaids_header_gen oemaids_headers passwd group
Test: Set TARGET_FS_CONFIG_GEN to a list of paths
Change-Id: Ic1f7d38239f3f805ca0723c24005d3e18a811870
Merged-In: Ic1f7d38239f3f805ca0723c24005d3e18a811870
(cherry picked from commit 54879d193e
)
This commit is contained in:
@@ -1049,6 +1049,6 @@ func (c *config) ProductHiddenAPIStubsTest() []string {
|
|||||||
return c.productVariables.ProductHiddenAPIStubsTest
|
return c.productVariables.ProductHiddenAPIStubsTest
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *deviceConfig) TargetFSConfigGen() *string {
|
func (c *deviceConfig) TargetFSConfigGen() []string {
|
||||||
return c.config.productVariables.TargetFSConfigGen
|
return c.config.productVariables.TargetFSConfigGen
|
||||||
}
|
}
|
||||||
|
@@ -286,7 +286,7 @@ type productVariables struct {
|
|||||||
ProductHiddenAPIStubsSystem []string `json:",omitempty"`
|
ProductHiddenAPIStubsSystem []string `json:",omitempty"`
|
||||||
ProductHiddenAPIStubsTest []string `json:",omitempty"`
|
ProductHiddenAPIStubsTest []string `json:",omitempty"`
|
||||||
|
|
||||||
TargetFSConfigGen *string `json:",omitempty"`
|
TargetFSConfigGen []string `json:",omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func boolPtr(v bool) *bool {
|
func boolPtr(v bool) *bool {
|
||||||
|
Reference in New Issue
Block a user