Treat system_ext as system container

Bug: b/365135457
Test: m
Change-Id: Ic8fd60c0e1045f190b6608931ca1d65a784026f0
This commit is contained in:
Dennis Shen
2024-09-12 22:05:08 +00:00
parent d4771aa267
commit 01efb83420
3 changed files with 10 additions and 2 deletions

View File

@@ -233,7 +233,8 @@ func getAconfigFilePaths(m *ModuleBase, aconfigFiles map[string]Paths) (paths Pa
} else if m.ProductSpecific() {
container = "product"
} else if m.SystemExtSpecific() {
container = "system_ext"
// system_ext and system partitions should be treated as one container
container = "system"
}
paths = append(paths, aconfigFiles[container]...)