aboutsummaryrefslogtreecommitdiff
path: root/filesystem/aconfig_files.go
diff options
context:
space:
mode:
authormosimchah <mosimchah@gmail.com>2025-12-02 09:27:38 -0500
committermosimchah <mosimchah@gmail.com>2025-12-02 09:27:38 -0500
commitc7bade461dc55726f62997d13a48582f7c4b4655 (patch)
treeea0588da76060a2038f54f67efd046ca77634b10 /filesystem/aconfig_files.go
parent0f5414d19317805e8bbbe7c4db5f0fd78769bad5 (diff)
parent89d78cff8b00d3b20a90074635c3fe5a2ee49474 (diff)
Merge branch 'lineage-23.1' of https://github.com/LineageOS/android_build_soong into HEADw16.1
* 'lineage-23.1' of https://github.com/LineageOS/android_build_soong: (528 commits) Revert "install_symlink: Make symlink target configurable" Reapply "Clear as much of cc.Module as possible after GenerateBuildActions" Revert "rust: config: Fix missing CPU variant LD flags in Rust" Rename build-flag in outdir Revert^4 "cipd: Default CIPD proxy server to on, add opt-out" Convert check-vintf-all to phony with actions Create a partial implementation of check-vintf-all for soong-only Configure RBE rust pool based on build variant Revert^3 "Add sdk version check to arr" Add jdk.internal.invoke to the allowlist Make droid always depend on symbols zip Import Device and Odm skus Don't install gob_gen in Soong Remove bazel reference from run_integration_tests.sh Fix bootstrap_test.sh Don't panic in aconfig libraries when AllowMissingDependencies is set Avoid returning nil paths from PathForModuleSrc Revert "Flag controled clang version" Rework module target dependencies on required deps Revert^2 "Add sdk version check to arr" ... Change-Id: I6e9a63fa14fda917a42e426e5dcebbad7f67e1de
Diffstat (limited to 'filesystem/aconfig_files.go')
-rw-r--r--filesystem/aconfig_files.go20
1 files changed, 9 insertions, 11 deletions
diff --git a/filesystem/aconfig_files.go b/filesystem/aconfig_files.go
index 20a195313..6b346b87c 100644
--- a/filesystem/aconfig_files.go
+++ b/filesystem/aconfig_files.go
@@ -16,7 +16,6 @@ package filesystem
import (
"android/soong/android"
- "strconv"
"strings"
"github.com/google/blueprint"
@@ -35,7 +34,6 @@ var (
subPartitionsInPartition = map[string][]string{
"system": {"system_ext", "product", "vendor"},
- "vendor": {"odm"},
}
)
@@ -45,6 +43,7 @@ func (f *filesystem) buildAconfigFlagsFiles(
specs map[string]android.PackagingSpec,
dir android.OutputPath,
fullInstallPaths *[]FullInstallPathInfo,
+ platformGeneratedFiles *[]string,
) {
if !proptools.Bool(f.properties.Gen_aconfig_flags_pb) {
return
@@ -88,18 +87,15 @@ func (f *filesystem) buildAconfigFlagsFiles(
installAconfigFlagsPath := installEtcDir.Join(ctx, "aconfig_flags.pb")
builder.Command().Text("mkdir -p ").Text(installEtcDir.String())
builder.Command().Text("cp").Input(aconfigFlagsPb).Text(installAconfigFlagsPath.String())
+ installPath := fullInstallPath.Join(ctx, "etc/aconfig_flags.pb")
*fullInstallPaths = append(*fullInstallPaths, FullInstallPathInfo{
- FullInstallPath: fullInstallPath.Join(ctx, "etc/aconfig_flags.pb"),
+ FullInstallPath: installPath,
SourcePath: aconfigFlagsPb,
})
f.appendToEntry(ctx, installAconfigFlagsPath)
+ *platformGeneratedFiles = append(*platformGeneratedFiles, installPath.String())
- // To enable fingerprint, we need to have v2 storage files. The default version is 1.
- storageFilesVersion := 1
- if ctx.Config().ReleaseFingerprintAconfigPackages() {
- storageFilesVersion = 2
- }
-
+ storageFilesVersion := ctx.Config().ReleaseAconfigStorageVersion()
installAconfigStorageDir := installEtcDir.Join(ctx, "aconfig")
builder.Command().Text("mkdir -p").Text(installAconfigStorageDir.String())
@@ -113,16 +109,18 @@ func (f *filesystem) buildAconfigFlagsFiles(
Args: map[string]string{
"container": container,
"fileType": fileType,
- "version": strconv.Itoa(storageFilesVersion),
+ "version": storageFilesVersion,
},
})
builder.Command().
Text("cp").Input(outPath).Text(installPath.String())
+ fip := fullInstallPath.Join(ctx, "etc/aconfig", fileName)
*fullInstallPaths = append(*fullInstallPaths, FullInstallPathInfo{
SourcePath: outPath,
- FullInstallPath: fullInstallPath.Join(ctx, "etc/aconfig", fileName),
+ FullInstallPath: fip,
})
f.appendToEntry(ctx, installPath)
+ *platformGeneratedFiles = append(*platformGeneratedFiles, fip.String())
}
if ctx.Config().ReleaseCreateAconfigStorageFile() {