diff options
| author | Bruno Martins <bgcngm@gmail.com> | 2020-04-12 12:13:10 +0100 |
|---|---|---|
| committer | Julian Veit <claymore1298@gmail.com> | 2020-04-12 18:31:44 +0200 |
| commit | 55d5e622bbf8028c07371ff742d35c4d963395e9 (patch) | |
| tree | d1d31d629fe37073135a16e06857af469ae82028 | |
| parent | 295b1bebbc1ea481ce569958c48608520bbbc95a (diff) | |
m8: Preserve previously set TARGET_RECOVERY_DEVICE_MODULES
TARGET_RECOVERY_DEVICE_MODULES is also defined in the common
tree and should not be overridden.
Change-Id: I00846f86ef6514e547cd166649fb4686167a74fc
| -rw-r--r-- | BoardConfig.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BoardConfig.mk b/BoardConfig.mk index 375d71b..c5ae65e 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -1,6 +1,6 @@ # # Copyright (C) 2015 The CyanogenMod Project -# 2017 The LineageOS Project +# 2017,2020 The LineageOS Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -56,7 +56,7 @@ BOARD_USERDATAIMAGE_PARTITION_SIZE := 13153337344 # Vendor Init TARGET_INIT_VENDOR_LIB := libinit_m8 -TARGET_RECOVERY_DEVICE_MODULES := libinit_m8 +TARGET_RECOVERY_DEVICE_MODULES += libinit_m8 # Inherit from the proprietary version -include vendor/htc/m8/BoardConfigVendor.mk |
