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

Commit f51b5148 authored by Jihoon Kang's avatar Jihoon Kang
Browse files

Define otacerts.recovery

By removing `recovery_available` property from "otacerts" and
defining a dedicated recovery-specific module for "otacerts".
`recovery_available` property should be used to allow the reverse
dependencies recovery modules to depend on the module, not to
install the module to the recovery partition.

Test: m soong_generated_recovery_filesystem_test
Bug: 381888358
Change-Id: I1529f072f124663d882081c001903d0bd04ce9d3
parent c1fc82ff
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -33,7 +33,13 @@ prebuilt_etc {
// image
otacerts_zip {
    name: "otacerts",
    recovery_available: true,
    relative_install_path: "security",
    filename: "otacerts.zip",
}

otacerts_zip {
    name: "otacerts.recovery",
    recovery: true,
    relative_install_path: "security",
    filename: "otacerts.zip",
}