Advertisement
ipdev

PocoGlobal_fstab

Jul 16th, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. # Android fstab file.
  2. # The filesystem that contains the filesystem checker binary (typically /system) cannot
  3. # specify MF_CHECK, and must come before any filesystems that do specify MF_CHECK
  4.  
  5. #TODO: Add 'check' as fs_mgr_flags with data partition.
  6. # Currently we dont have e2fsck compiled. So fs check would failed.
  7.  
  8. #<src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags>
  9. /dev/block/bootdevice/by-name/userdata /data ext4 noatime,nosuid,nodev,barrier=1,noauto_da_alloc wait,check,reservedsize=128M,forceencrypt=footer,quota
  10. /devices/platform/soc/8804000.sdhci/mmc_host* /storage/sdcard1 vfat nosuid,nodev wait,voldmanaged=sdcard1:auto,encryptable=footer
  11. /dev/block/bootdevice/by-name/modem /vendor/firmware_mnt vfat ro,shortname=lower,uid=0,gid=1000,dmask=227,fmask=337,context=u:object_r:firmware_file:s0 wait
  12. /dev/block/bootdevice/by-name/dsp /vendor/dsp ext4 ro,nosuid,nodev,barrier=1 wait
  13. /dev/block/bootdevice/by-name/persist /mnt/vendor/persist ext4 noatime,nosuid,nodev,barrier=1 wait
  14. /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
  15. /dev/block/bootdevice/by-name/cache /cache ext4 noatime,nosuid,nodev,barrier=1 wait
  16. /devices/platform/soc/a600000.ssusb/a600000.dwc3/xhci-hcd.0.auto* /storage/usbotg vfat nosuid,nodev wait,voldmanaged=usbotg:auto
  17. # Need to have this entry in here even though the mount point itself is no longer needed.
  18. # The update_engine code looks for this entry in order to determine the boot device address
  19. # and fails if it does not find it.
  20. /dev/block/bootdevice/by-name/misc /misc emmc defaults defaults
  21. /devices/platform/soc/a600000.ssusb/a600000.dwc3/xhci-hcd.*.auto* /storage/usbotg vfat nosuid,nodev wait,voldmanaged=usbotg:auto
  22. /devices/platform/soc/a800000.ssusb/a800000.dwc3/xhci-hcd.*.auto* /storage/usbotg vfat nosuid,nodev wait,voldmanaged=usbotg:auto
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement