rk3568的data分区修改
修改内容: 之前是f2fs分区, 发现f2fs分区格式有概率出现bug, 现在需要修改成ext4分区格式,另外, 为了应对app安装过程中突然掉电导致的app丢失问题,也需要对data分区进行修改
修改内容如下:
第一步. 修改fstab模板文件
# Android fstab file.
#<src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags>
# The filesystem that contains the filesystem checker binary (typically /system) cannot
# specify MF_CHECK, and must come before any filesystems that do specify MF_CHECK
${_block_prefix}system /system ext4 ro,barrier=1 ${_flags_vbmeta},first_stage_mount${_flags_avbpubkey}
${_block_prefix}vendor /vendor ext4 ro,barrier=1 ${_flags},first_stage_mount
${_block_p