commit | 61d5f00bffcb2e8c069f0bb8b5eae93dd6d0a4b5 | [log] [tgz] |
---|---|---|
author | Ted Bauer <tedbauer@google.com> | Tue Dec 17 11:15:33 2024 -0800 |
committer | Android Build Cherrypicker Worker <android-build-cherrypicker-worker@google.com> | Tue Dec 17 11:15:33 2024 -0800 |
tree | 8a1b0ebdcfd8d2a6eee24725817f59e48d4170d0 | |
parent | 7d03f38260d5cfd5935bcd13e19a0c1919111c41 [diff] |
Correct partition name Test: m Bug: 373685244 Ignore-AOSP-First: CPing (cherry picked from https://googleplex-android-review.googlesource.com/q/commit:3fdf2553a65530bb33a815a73bad5ad7cab463c3) Merged-In: Ie073f7b33843f838a6c66d53b4feb37e213706f4 Change-Id: Ie073f7b33843f838a6c66d53b4feb37e213706f4
diff --git a/tools/aconfig/aconfig/src/commands.rs b/tools/aconfig/aconfig/src/commands.rs index 4c06462..547076f 100644 --- a/tools/aconfig/aconfig/src/commands.rs +++ b/tools/aconfig/aconfig/src/commands.rs
@@ -439,7 +439,7 @@ // Exclude system/vendor/product flags that are RO+disabled. let should_filter_container = pf.container == Some("vendor".to_string()) || pf.container == Some("system".to_string()) - || pf.container == Some("vendor".to_string()); + || pf.container == Some("product".to_string()); if !(should_filter_container && pf.state == Some(ProtoFlagState::DISABLED.into()) && pf.permission == Some(ProtoFlagPermission::READ_ONLY.into()))