Merge changes I0ad349f2,I0f528cf1
* changes: fs_mgr: allow using legacy A/B suffix fs_mgr: adapt to new A/B support
This commit is contained in:
commit
27a091d4a1
1 changed files with 3 additions and 2 deletions
|
|
@ -35,10 +35,11 @@ int fs_mgr_update_for_slotselect(struct fstab *fstab)
|
|||
return -1;
|
||||
}
|
||||
got_suffix = 1;
|
||||
// remove below line when bootloaders fix androidboot.slot_suffix param
|
||||
if (suffix[0] == '_') suffix.erase(suffix.begin());
|
||||
}
|
||||
|
||||
if (asprintf(&tmp, "%s%s", fstab->recs[n].blk_device,
|
||||
suffix.c_str()) > 0) {
|
||||
if (asprintf(&tmp, "%s_%s", fstab->recs[n].blk_device, suffix.c_str()) > 0) {
|
||||
free(fstab->recs[n].blk_device);
|
||||
fstab->recs[n].blk_device = tmp;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue