The zumapro targets that only boot with 16kb kernels will have this filesystem setup for data and metadata partitions: - data partition: f2fs - metadata partition: ext4 Important: For the HW file encryption to work in the data partition in 16kb kernels the `dusize_4k` parameter has to be set: ``` fileencryption=:aes-256-hctr2:inlinecrypt_optimized+wrappedkey_v0+dusize_4k ``` Bug: 350101696 Test: built pgagnostic target and checked the fs for mounted partitions. Flag: EXEMPT bugfix Change-Id: I566618e6fa1db2ff4463e00e8d091e7226ba0399
6 lines
1,019 B
Text
6 lines
1,019 B
Text
# Android fstab file for /data and /metadata partitions.
|
|
#
|
|
# This fstab is used for devices that only boot 16kb page size kernels.
|
|
#<src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags>
|
|
/dev/block/platform/13200000.ufs/by-name/metadata /metadata ext4 noatime,nosuid,nodev,sync wait,check,formattable,first_stage_mount
|
|
/dev/block/platform/13200000.ufs/by-name/userdata /data f2fs noatime,nosuid,nodev,discard,reserve_root=32768,resgid=1065,fsync_mode=nobarrier,compress_extension=apk,compress_extension=so,compress_extension=vdex,compress_extension=odex,@inlinecrypt@,atgc,checkpoint_merge,compress_cache latemount,wait,check,quota,formattable,sysfs_path=/dev/sys/block/bootdevice,checkpoint=fs,reservedsize=128M,fscompress,readahead_size_kb=128,@fileencryption@,@metadata_encryption@,keydirectory=/metadata/vold/metadata_encryption,device=zoned:/dev/block/by-name/zoned_device
|