Set ro.build.version.security_patch and ro.build.version.sdk in system/etc/prop.default

This commit is contained in:
Pierre-Hugues Husson 2018-01-27 13:23:31 +01:00
parent 5414900380
commit 5f2ba98975
1 changed files with 7 additions and 0 deletions

View File

@ -15,3 +15,10 @@ $(call inherit-product, vendor/vndk/vndk.mk)
$(call inherit-product, vendor/hardware_overlay/overlay.mk)
$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk)
$(call inherit-product, $(SRC_TARGET_DIR)/product/aosp_base_telephony.mk)
#Those overrides are here because Huawei's init read properties
#from /system/etc/prop.default, then /vendor/build.prop, then /system/build.prop
#So we need to set our props in prop.default
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
ro.build.version.security_patch=$(PLATFORM_SECURITY_PATCH) \
ro.build.version.sdk=$(PLATFORM_SDK_VERSION)