Advertisement
Guest User

Untitled

a guest
Nov 27th, 2013
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. my fstab.qcom
  2.  
  3. # Android fstab file.
  4. # The filesystem that contains the filesystem checker binary (typically /system) cannot
  5. # specify MF_CHECK, and must come before any filesystems that do specify MF_CHECK
  6.  
  7. #TODO: Add 'check' as fs_mgr_flags with data partition.
  8. # Currently we dont have e2fsck compiled. So fs check would failed.
  9.  
  10. #<src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags>
  11. /dev/block/platform/msm_sdcc.1/by-name/system /system ext4 ro,errors=panic wait
  12. /dev/block/platform/msm_sdcc.1/by-name/userdata /data ext4 nosuid,nodev,noatime,noauto_da_alloc,discard,journal_async_commit,errors=panic wait,check,encryptable=footer
  13.  
  14.  
  15. port guide fstab
  16.  
  17. /dev/block/platform/omap/omap_hsmmc.1/by-name/FACTORYFS /system ext4 ro,barrier=1 wait
  18. 9 /dev/block/platform/omap/omap_hsmmc.1/by-name/EFS /efs ext4 nosuid,nodev,barrier=1 wait,check
  19. 10 -/dev/block/platform/omap/omap_hsmmc.1/by-name/DATAFS /data ext4 noatime,nosuid,nodev,barrier=1,discard,noauto_da_alloc,journal_async_commit wait,check,encryptable=footer
  20. 11 +/dev/block/platform/omap/omap_hsmmc.1/by-name/DATAFS /data ext4 noatime,nodev,barrier=1,discard,noauto_da_alloc,journal_async_commit wait,check,encryptable=footer
  21. 12 /dev/block/platform/omap/omap_hsmmc.1/by-name/CACHE /cache ext4 noatime,nosuid,nodev,barrier=1,discard,noauto_da_alloc,journal_async_commit wait,check
  22.  
  23.  
  24. /dev/block/platform/omap/omap_hsmmc.1/by-name/ " is the same with different partitions
  25. i.e/ /DATA /CACHE
  26.  
  27. back to my fstab.qcom
  28. /dev/block/platform/msm_sdcc.1/by-name/ is the same with /system and /data partitions
  29.  
  30. should i add the /data /cache to mine in same format
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement