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

Commit 9434f19d authored by Devin Moore's avatar Devin Moore
Browse files

Android W -> B for finalization scripts

Android 16 is B, not W.

Bug: 384614121
Test: build/make/tools/finalization/build-step-0.sh --steps_for_build_test_only
Change-Id: Ib9fcdda063cb0b9589b1e54244726c2011175bed
Merged-In: Ib9fcdda063cb0b9589b1e54244726c2011175bed
parent aa8ebc7c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -147,6 +147,6 @@ vintf_compatibility_matrix {
    stem: "compatibility_matrix.202504.xml",
    srcs: ["compatibility_matrix.202504.xml"],
    kernel_configs: [
        "kernel_config_w_6.12",
        "kernel_config_b_6.12",
    ],
}
+3 −3
Original line number Diff line number Diff line
@@ -181,14 +181,14 @@ def main():
                        help="VINTF level of the next version (e.g. 202504)")
    parser.add_argument("current_letter",
                        type=str,
                        help="Letter of the API level of the current version (e.g. v)")
                        help="Letter of the API level of the current version (e.g. b)")
    parser.add_argument("next_letter",
                        type=str,
                        help="Letter of the API level of the next version (e.g. w)")
                        help="Letter of the API level of the next version (e.g. c)")
    parser.add_argument("platform_version",
                        type=str,
                        nargs="?",
                        help="Android release version number number (e.g. 15)")
                        help="Android release version number number (e.g. 16)")
    cmdline_args = parser.parse_args()

    Bump(cmdline_args).run()