Advertisement
Guest User

-$ adb shell ~ # cat /etc/recovery.fstab

a guest
Apr 23rd, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. # Android fstab file.
  2. # <src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags>
  3. # The filesystem that contains the filesystem checker binary (typically /system) cannot
  4. # specify MF_CHECK, and must come before any filesystems that do specify MF_CHECK
  5.  
  6. recovery /recovery mtd defaults recoveryonly
  7. boot /boot mtd defaults recoveryonly
  8. radio /radio mtd defaults recoveryonly
  9. cache /cache yaffs2 defaults recoveryonly
  10. datadata /datadata yaffs2 defaults recoveryonly
  11.  
  12. # LVM Volumes
  13. /dev/lvpool/system /system ext4 ro wait
  14. /dev/lvpool/userdata /data ext4 noatime,nodev,nosuid,nomblk_io_submit,errors=panic wait,encryptable=footer,length=-16384
  15.  
  16. /devices/platform/s3c-sdhci.0/mmc_host/mmc0 auto auto defaults voldmanaged=sdcard0:1,nonremovable,noemulatedsd
  17. /devices/platform/s3c-sdhci.2/mmc_host/mmc2 auto auto defaults voldmanaged=sdcard1:auto
  18.  
  19. # zRAM
  20. /dev/block/zram0 none swap defaults zramsize=134217728
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement