diff options
author | Michael Bestas <mkbestas@lineageos.org> | 2018-02-27 20:00:45 +0000 |
---|---|---|
committer | Isaac Chen <isaacchen@isaacchen.cn> | 2018-07-19 00:00:34 +0000 |
commit | 587fead983fde643c8fd48a10fd93d7e5be9d900 (patch) | |
tree | 048fe9efb9c62b30eb9ea3fd994f218a3f9b9d32 /BoardConfig.mk | |
parent | abb347287867226bc35d029fd94be63c61a24f42 (diff) |
wayne: Get rid of recovery-only fstab
* Mounting /system and /vendor partitions is handled in kernel now,
however removing the entries from fstab caused issues building
the OTA. The workaround was to have a separate fstab, but turns out
that simply setting the recoveryonly flag does the trick because
those are then ignored during a normal Android boot.
Change-Id: I2944384d0a1c41bc9f9f51e2e29daff2bed0a0f4
Diffstat (limited to 'BoardConfig.mk')
-rw-r--r-- | BoardConfig.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BoardConfig.mk b/BoardConfig.mk index 4355004..150f21a 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -226,7 +226,7 @@ BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED := true TARGET_VENDOR_PROP := $(DEVICE_PATH)/vendor.prop # Recovery -TARGET_RECOVERY_FSTAB := $(DEVICE_PATH)/rootdir/etc/recovery.fstab +TARGET_RECOVERY_FSTAB := $(DEVICE_PATH)/rootdir/etc/fstab.qcom BOARD_HAS_LARGE_FILESYSTEM := true # RIL |