-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge "Revert "Move fstab files to /vendor/etc/.""
- Loading branch information
Showing
7 changed files
with
37 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Android fstab file. | ||
# 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 | ||
|
||
#TODO: Add 'check' as fs_mgr_flags with data partition. | ||
# Currently we dont have e2fsck compiled. So fs check would failed. | ||
|
||
#<src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags> | ||
/dev/block/platform/soc/624000.ufshc/by-name/system / ext4 ro,barrier=1 wait,slotselect,verify | ||
# 'vendor' partition is now early-mounted and fstab entry is specified in device tree | ||
# /dev/block/platform/soc/624000.ufshc/by-name/vendor /vendor ext4 ro,barrier=1 wait,slotselect | ||
/dev/block/platform/soc/624000.ufshc/by-name/modem /firmware/radio vfat ro,shortname=lower,uid=1000,gid=0,dmask=227,fmask=337,context=u:object_r:firmware_file:s0 wait,slotselect | ||
/dev/block/platform/soc/624000.ufshc/by-name/userdata /data ext4 noatime,nosuid,nodev,barrier=1,noauto_da_alloc latemount,wait,check,formattable,fileencryption=ice | ||
/dev/block/zram0 none swap defaults zramsize=536870912 | ||
/dev/block/platform/soc/624000.ufshc/by-name/misc /misc emmc defaults defaults | ||
/devices/*/xhci-hcd.0.auto/usb* auto vfat defaults voldmanaged=usb:auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
# Android fstab file. | ||
# The filesystem that contains the filesystem e2fsck binary (typically /system) cannot | ||
# specify 'check', and must come before any filesystems that do specify 'check' | ||
# 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 | ||
|
||
# NOTE: /vendor partition is now early-mounted and the fstab entry is specified in device tree: | ||
# /proc/device-tree/firmware/android/fstab/vendor | ||
|
||
#<src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags> | ||
/dev/block/platform/soc/624000.ufshc/by-name/system / ext4 ro,barrier=1 wait,slotselect,verify | ||
/dev/block/platform/soc/624000.ufshc/by-name/modem /firmware/radio vfat ro,shortname=lower,uid=1000,gid=0,dmask=227,fmask=337,context=u:object_r:firmware_file:s0 wait,slotselect | ||
/dev/block/platform/soc/624000.ufshc/by-name/userdata /data ext4 noatime,nosuid,nodev,barrier=1,noauto_da_alloc latemount,wait,check,formattable,fileencryption=ice,quota | ||
/dev/block/zram0 none swap defaults zramsize=536870912 | ||
/dev/block/platform/soc/624000.ufshc/by-name/misc /misc emmc defaults defaults | ||
/devices/*/xhci-hcd.0.auto/usb* auto vfat defaults voldmanaged=usb:auto | ||
#TODO: Add 'check' as fs_mgr_flags with data partition. | ||
# Currently we dont have e2fsck compiled. So fs check would failed. | ||
# NOTE: fstab.aosp_common is used for aosp. Make changes there as well. | ||
#<src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags> | ||
/dev/block/platform/soc/624000.ufshc/by-name/system / ext4 ro,barrier=1 wait,slotselect,verify | ||
# 'vendor' partition is now early-mounted and fstab entry is specified in device tree | ||
# /dev/block/platform/soc/624000.ufshc/by-name/vendor /vendor ext4 ro,barrier=1 wait,slotselect,verify | ||
/dev/block/platform/soc/624000.ufshc/by-name/modem /firmware/radio vfat ro,shortname=lower,uid=1000,gid=0,dmask=227,fmask=337,context=u:object_r:firmware_file:s0 wait,slotselect | ||
/dev/block/platform/soc/624000.ufshc/by-name/userdata /data ext4 noatime,nosuid,nodev,barrier=1,noauto_da_alloc latemount,wait,check,formattable,fileencryption=ice,quota | ||
/dev/block/zram0 none swap defaults zramsize=536870912 | ||
/dev/block/platform/soc/624000.ufshc/by-name/misc /misc emmc defaults defaults | ||
/devices/*/xhci-hcd.0.auto/usb* auto vfat defaults voldmanaged=usb:auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters