2021-07-10 09:27:09 -04:00
|
|
|
# Android fstab file.
|
|
|
|
# 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
|
|
|
|
|
|
|
|
#TODO: Add 'check' as fs_mgr_flags with data partition.
|
|
|
|
# Currently we dont have e2fsck compiled. So fs check would failed.
|
|
|
|
|
|
|
|
#<src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags>
|
2023-11-21 13:03:48 -05:00
|
|
|
system /system ext4 ro,barrier=1,discard wait,logical,first_stage_mount
|
|
|
|
system_ext /system_ext ext4 ro,barrier=1,discard wait,logical,first_stage_mount
|
|
|
|
product /product ext4 ro,barrier=1,discard wait,logical,first_stage_mount
|
|
|
|
vendor /vendor ext4 ro,barrier=1,discard wait,logical,first_stage_mount
|
|
|
|
odm /odm ext4 ro,barrier=1,discard wait,logical,first_stage_mount
|
2022-03-24 17:24:26 -04:00
|
|
|
/dev/block/bootdevice/by-name/recovery /recovery emmc defaults defaults
|
sdm710-common: init: Add /boot to fstab
Build process errors out without this.
Traceback (most recent call last):
File "build/make/tools/releasetools/ota_from_target_files", line 2455, in <module>
main(sys.argv[1:])
File "build/make/tools/releasetools/ota_from_target_files", line 2429, in main
output_file=args[1])
File "build/make/tools/releasetools/ota_from_target_files", line 1103, in WriteFullOTAPackage
common.CheckSize(boot_img.data, "boot.img", target_info)
File "/home/aicp-dev/rom/lineage-17.1/build/make/tools/releasetools/common.py", line 1190, in CheckSize
p = info_dict["fstab"][mount_point]
KeyError: '/boot'
- also reformat and fix some fstab intendation
Change-Id: I30a396ea62e6e48420c0dd41533c156e90032929
2020-07-12 17:48:06 -04:00
|
|
|
/dev/block/bootdevice/by-name/boot /boot emmc defaults defaults
|
2023-03-04 13:37:36 -05:00
|
|
|
/dev/block/by-name/logdump /metadata ext4 nosuid,nodev,noatime,discard,data=journal,commit=1 wait,check,formattable,first_stage_mount
|
2023-03-06 11:42:56 -05:00
|
|
|
/dev/block/bootdevice/by-name/userdata /data ext4 noatime,nosuid,noatime,nodev,barrier=1,noauto_da_alloc,discard,lazytime latemount,wait,check,fileencryption=ice,reservedsize=128M
|
2021-07-10 09:27:09 -04:00
|
|
|
/dev/block/bootdevice/by-name/cache /cache ext4 nosuid,noatime,nodev,barrier=1 wait
|
2021-09-08 04:42:18 -04:00
|
|
|
/devices/platform/soc/8804000.sdhci/mmc_host* /storage/sdcard1 vfat nosuid,nodev wait,voldmanaged=sdcard1:auto,encryptable=userdata
|
|
|
|
/devices/platform/soc/1da4000.ufshc_card/host* /storage/sdcard1 vfat nosuid,nodev wait,voldmanaged=sdcard1:auto,encryptable=userdata
|
2021-07-10 09:27:09 -04:00
|
|
|
/dev/block/bootdevice/by-name/modem /vendor/firmware_mnt vfat ro,shortname=lower,uid=1000,gid=1000,dmask=227,fmask=337,context=u:object_r:firmware_file:s0 wait
|
|
|
|
/dev/block/bootdevice/by-name/dsp /vendor/dsp ext4 ro,nosuid,nodev,barrier=1 wait
|
|
|
|
/dev/block/bootdevice/by-name/persist /mnt/vendor/persist ext4 nosuid,noatime,nodev,barrier=1 wait
|
|
|
|
/dev/block/bootdevice/by-name/bluetooth /vendor/bt_firmware vfat ro,shortname=lower,uid=1002,gid=3002,dmask=227,fmask=337,context=u:object_r:bt_firmware_file:s0 wait
|
|
|
|
# Need to have this entry in here even though the mount point itself is no longer needed.
|
|
|
|
# The update_engine code looks for this entry in order to determine the boot device address
|
|
|
|
# and fails if it does not find it.
|
|
|
|
/dev/block/bootdevice/by-name/misc /misc emmc defaults defaults
|
2023-01-19 09:13:37 -05:00
|
|
|
/devices/platform/soc/a600000.ssusb/a600000.dwc3/xhci-hcd.*.auto* auto auto defaults voldmanaged=usbotg:auto
|