Advertisement
Guest User

Untitled

a guest
Feb 27th, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. cat ./recovery.fstab
  2. # mount point fstype device
  3.  
  4. /boot emmc /dev/block/mmcblk0p5
  5. /recovery emmc /dev/block/mmcblk0p6
  6.  
  7. /efs ext4 /dev/block/mmcblk0p1
  8. /cache ext4 /dev/block/mmcblk0p7
  9. /system ext4 /dev/block/mmcblk0p9
  10. /data ext4 /dev/block/mmcblk0p10
  11.  
  12. /emmc auto /dev/block/mmcblk0p11
  13. /sdcard auto /dev/block/mmcblk1p1 /dev/block/mmcblk1
  14.  
  15.  
  16. cat ./configs/vold.fstab
  17. ## Vold 2.0 Generic fstab
  18. ## - San Mehat ([email protected])
  19. ##
  20.  
  21. #######################
  22. ## Regular device mount
  23. ##
  24. ## Format: dev_mount <label> <mount_point> <part> <sysfs_path1...>
  25. ## label - Label for the volume
  26. ## mount_point - Where the volume will be mounted
  27. ## part - Partition # (1 based), or 'auto' for first usable partition.
  28. ## <sysfs_path> - List of sysfs paths to source devices
  29. ## storage_struct - ex) series, "/mnt/sdcard/extStorages" / parallel
  30. ######################
  31.  
  32. # internal sdcard
  33. dev_mount sdcard0 /storage/sdcard0 11 /devices/platform/omap/omap_hsmmc.1/mmc_host/mmc0 encryptable_nonremovable
  34.  
  35. # external sdcard
  36. dev_mount sdcard1 /storage/sdcard1 auto /devices/platform/omap/omap_hsmmc.0/mmc_host/mmc1
  37.  
  38. # usbdisk
  39. dev_mount usbdisk0 /storage/usbdisk0 auto /devices/platform/omap/musb-omap2430/musb-hdrc/usb1
  40.  
  41.  
  42. cat ./rootdir/fstab.t1
  43. # Android fstab file.
  44. #<src> <mnt_point><type> <mnt_flags and options> <fs_mgr_flags>
  45. # The filesystem that contains the filesystem checker binary (typically /system) cannot
  46. # specify MF_CHECK, and must come before any filesystems that do specify MF_CHECK
  47. # data partition must be located at the bottom for supporting device encryption
  48.  
  49. /dev/block/platform/omap/omap_hsmmc.1/by-name/FACTORYFS /system ext4 ro,noatime wait
  50. /dev/block/platform/omap/omap_hsmmc.1/by-name/CACHE /cache ext4 noatime,nosuid,nodev,errors=panic wait,check
  51. /dev/block/platform/omap/omap_hsmmc.1/by-name/EFS /efs ext4 noatime,nosuid,nodev,errors=panic wait,check
  52. /dev/block/platform/omap/omap_hsmmc.1/by-name/HIDDEN /preload ext4 ro,noatime,errors=panic wait
  53. /dev/block/platform/omap/omap_hsmmc.1/by-name/DATAFS /data ext4 noatime,nosuid,nodev,errors=panic,discard,noauto_da_alloc wait,check,encryptable=/efs/metadata
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement