Obtain incfs features early in the booting sequence.
Has to be done before SystemConfig initialization to set correct Incremental version feature. Bug: 180010901 Test: atest PackageManagerShellCommandTest PackageManagerShellCommandIncrementalTest IncrementalServiceTest PackageManagerServiceTest ChecksumsTest Change-Id: I262d1f06aecb481f37bf82005c85fed02c476510
This commit is contained in:
parent
2e8f0d438b
commit
b02e7b698e
1 changed files with 6 additions and 0 deletions
|
@ -903,10 +903,16 @@ binder::Status VoldNativeService::resetCheckpoint() {
|
||||||
return Ok();
|
return Ok();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void initializeIncFs() {
|
||||||
|
// Obtaining IncFS features triggers initialization of IncFS.
|
||||||
|
incfs::features();
|
||||||
|
}
|
||||||
|
|
||||||
binder::Status VoldNativeService::earlyBootEnded() {
|
binder::Status VoldNativeService::earlyBootEnded() {
|
||||||
ENFORCE_SYSTEM_OR_ROOT;
|
ENFORCE_SYSTEM_OR_ROOT;
|
||||||
ACQUIRE_LOCK;
|
ACQUIRE_LOCK;
|
||||||
|
|
||||||
|
initializeIncFs();
|
||||||
Keymaster::earlyBootEnded();
|
Keymaster::earlyBootEnded();
|
||||||
return Ok();
|
return Ok();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue