common: move config.fs declaration outside of BoardConfig

fixes
`device/qcom/common/BoardConfigQcom.mk:27: error: cannot assign to readonly variable: TARGET_FS_CONFIG_GEN`

Signed-off-by: Omkar Chandorkar <gotenksIN@aospa.co>
Change-Id: I1694332eccb3aef0cb4485fc94e38dc9162ec914
This commit is contained in:
Omkar Chandorkar 2022-07-23 18:06:13 +09:00
parent 104d9d9641
commit 0ccb22dbb4
No known key found for this signature in database
GPG Key ID: 95A33FD984777F70
2 changed files with 3 additions and 3 deletions

View File

@ -23,9 +23,6 @@ ifeq ($(call is-board-platform-in-list, apq8084 msm8226 msm8909 msm8916 msm8937
TARGET_USES_MEDIA_EXTENSIONS := true
endif
# Filesystem
TARGET_FS_CONFIG_GEN += device/qcom/common/config.fs
# For pre-UM display and gps HAL
ifeq ($(call is-board-platform-in-list, apq8084 msm8226 msm8610 msm8974 msm8992 msm8994 msm8909 msm8916 msm8952 msm8976),true)
TARGET_USES_QCOM_BSP := true

View File

@ -160,6 +160,9 @@ endif
# Components
include $(QCOM_COMMON_PATH)/components.mk
# Filesystem
TARGET_FS_CONFIG_GEN += $(QCOM_COMMON_PATH)/config.fs
# Power
ifneq ($(TARGET_PROVIDES_POWERHAL),true)
$(call inherit-product-if-exists, vendor/qcom/opensource/power/power-vendor-product.mk)