Merge "fs_mgr_verity: fix androidboot.veritymode=enforcing doesn't work"
This commit is contained in:
commit
6019991c6e
1 changed files with 1 additions and 1 deletions
|
|
@ -663,7 +663,7 @@ int load_verity_state(struct fstab_rec* fstab, int* mode) {
|
|||
/* use the kernel parameter if set */
|
||||
std::string veritymode;
|
||||
if (fs_mgr_get_boot_config("veritymode", &veritymode)) {
|
||||
if (veritymode.compare("enforcing")) {
|
||||
if (veritymode == "enforcing") {
|
||||
*mode = VERITY_MODE_DEFAULT;
|
||||
}
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue