Allow setting the recovery density separately from the aapt config
Change-Id: I817a4c01302956ec846503d9a585c43e690e45bf
This commit is contained in:
parent
85dc11c468
commit
e7e735832d
1 changed files with 4 additions and 0 deletions
|
@ -2421,6 +2421,9 @@ recovery_kernel := $(firstword $(INSTALLED_KERNEL_TARGET))
|
|||
recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img
|
||||
recovery_resources_common := bootable/recovery/res
|
||||
|
||||
ifneq (,$(TARGET_RECOVERY_DENSITY))
|
||||
recovery_density := $(filter %dpi,$(TARGET_RECOVERY_DENSITY))
|
||||
else
|
||||
# Set recovery_density to a density bucket based on TARGET_SCREEN_DENSITY, PRODUCT_AAPT_PREF_CONFIG,
|
||||
# or mdpi, in order of preference. We support both specific buckets (e.g. xdpi) and numbers,
|
||||
# which get remapped to a bucket.
|
||||
|
@ -2436,6 +2439,7 @@ recovery_density := $(strip \
|
|||
$(if $(filter $(shell echo $$(($(recovery_density_value) >= 280))),1),xhdpi),\
|
||||
$(if $(filter $(shell echo $$(($(recovery_density_value) >= 200))),1),hdpi,mdpi)))
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq (,$(wildcard $(recovery_resources_common)-$(recovery_density)))
|
||||
recovery_resources_common := $(recovery_resources_common)-$(recovery_density)
|
||||
|
|
Loading…
Reference in a new issue