-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
aosp_common: dont verify vendor partition
Disable dm-verity for the vendor partition in AOSP builds. This allows the device to boot even though verity metadata is signed with a different key. Bug: 30074027 Change-Id: I79f1de03367d1bc465891d88cd1568b603ad3994
- Loading branch information
Badhri Jagan Sridharan
authored and
Badhri Jagan Sridharan
committed
Jul 14, 2016
1 parent
f4844f3
commit 062dfea
Showing
4 changed files
with
23 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# 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/bootdevice/by-name/system / ext4 ro,barrier=1,discard wait,slotselect,verify | ||
/dev/block/bootdevice/by-name/vendor /vendor ext4 ro,barrier=1,discard wait,slotselect | ||
/dev/block/bootdevice/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/bootdevice/by-name/userdata /data ext4 nosuid,nodev,barrier=1,noauto_da_alloc,discard wait,check | ||
#/dev/block/platform/soc/624000.ufshc/by-name/system /system squashfs ro | ||
/dev/block/bootdevice/by-name/userdata /data ext4 nosuid,nodev,barrier=1,noauto_da_alloc,discard wait,check,formattable,fileencryption=ice | ||
#/devices/soc/74a4900.sdhci/mmc_host* /storage/sdcard1 vfat nosuid,nodev wait,voldmanaged=sdcard1:auto,encryptable=footer | ||
/dev/block/zram0 none swap defaults zramsize=536870912 | ||
/dev/block/bootdevice/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