Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- cat ./recovery.fstab
- # mount point fstype device
- /boot emmc /dev/block/mmcblk0p5
- /recovery emmc /dev/block/mmcblk0p6
- /efs ext4 /dev/block/mmcblk0p1
- /cache ext4 /dev/block/mmcblk0p7
- /system ext4 /dev/block/mmcblk0p9
- /data ext4 /dev/block/mmcblk0p10
- /emmc auto /dev/block/mmcblk0p11
- /sdcard auto /dev/block/mmcblk1p1 /dev/block/mmcblk1
- cat ./configs/vold.fstab
- ## Vold 2.0 Generic fstab
- ## - San Mehat ([email protected])
- ##
- #######################
- ## Regular device mount
- ##
- ## Format: dev_mount <label> <mount_point> <part> <sysfs_path1...>
- ## label - Label for the volume
- ## mount_point - Where the volume will be mounted
- ## part - Partition # (1 based), or 'auto' for first usable partition.
- ## <sysfs_path> - List of sysfs paths to source devices
- ## storage_struct - ex) series, "/mnt/sdcard/extStorages" / parallel
- ######################
- # internal sdcard
- dev_mount sdcard0 /storage/sdcard0 11 /devices/platform/omap/omap_hsmmc.1/mmc_host/mmc0 encryptable_nonremovable
- # external sdcard
- dev_mount sdcard1 /storage/sdcard1 auto /devices/platform/omap/omap_hsmmc.0/mmc_host/mmc1
- # usbdisk
- dev_mount usbdisk0 /storage/usbdisk0 auto /devices/platform/omap/musb-omap2430/musb-hdrc/usb1
- cat ./rootdir/fstab.t1
- # Android fstab file.
- #<src> <mnt_point><type> <mnt_flags and options> <fs_mgr_flags>
- # 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
- # data partition must be located at the bottom for supporting device encryption
- /dev/block/platform/omap/omap_hsmmc.1/by-name/FACTORYFS /system ext4 ro,noatime wait
- /dev/block/platform/omap/omap_hsmmc.1/by-name/CACHE /cache ext4 noatime,nosuid,nodev,errors=panic wait,check
- /dev/block/platform/omap/omap_hsmmc.1/by-name/EFS /efs ext4 noatime,nosuid,nodev,errors=panic wait,check
- /dev/block/platform/omap/omap_hsmmc.1/by-name/HIDDEN /preload ext4 ro,noatime,errors=panic wait
- /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