Merge "fs_mgr_verity: fix androidboot.veritymode=enforcing doesn't work" into oc-dev
This commit is contained in:
commit
5f68b422bd
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…
Reference in a new issue