summaryrefslogtreecommitdiffstats
path: root/minuitwrp
diff options
context:
space:
mode:
authorEthan Yonker <dees_troy@teamw.in>2014-08-07 16:28:04 +0200
committerEthan Yonker <dees_troy@teamw.in>2014-08-07 16:28:04 +0200
commitb24caab14cffc2062359431a05f8d618ad76cd7a (patch)
tree4e3b8b6d4fe4f59740b17d94af7210dcf6d81c34 /minuitwrp
parentremoving logging test file (diff)
downloadandroid_bootable_recovery-b24caab14cffc2062359431a05f8d618ad76cd7a.tar
android_bootable_recovery-b24caab14cffc2062359431a05f8d618ad76cd7a.tar.gz
android_bootable_recovery-b24caab14cffc2062359431a05f8d618ad76cd7a.tar.bz2
android_bootable_recovery-b24caab14cffc2062359431a05f8d618ad76cd7a.tar.lz
android_bootable_recovery-b24caab14cffc2062359431a05f8d618ad76cd7a.tar.xz
android_bootable_recovery-b24caab14cffc2062359431a05f8d618ad76cd7a.tar.zst
android_bootable_recovery-b24caab14cffc2062359431a05f8d618ad76cd7a.zip
Diffstat (limited to 'minuitwrp')
-rw-r--r--minuitwrp/Android.mk14
1 files changed, 14 insertions, 0 deletions
diff --git a/minuitwrp/Android.mk b/minuitwrp/Android.mk
index 3c148eacb..d953ce719 100644
--- a/minuitwrp/Android.mk
+++ b/minuitwrp/Android.mk
@@ -80,6 +80,20 @@ endif
ifneq ($(BOARD_USE_CUSTOM_RECOVERY_FONT),)
LOCAL_CFLAGS += -DBOARD_USE_CUSTOM_RECOVERY_FONT=$(BOARD_USE_CUSTOM_RECOVERY_FONT)
+else
+ FONT_7x16 := 240x240 280x280 320x320 320x480
+ ROBOTO_10x18 := 480x800 480x854 540x960 800x480 1024x600 1024x768 1280x800
+ ROBOTO_15x24 := 720x1280 800x1280
+ ROBOTO_23x41 := 1080x1920 1200x1920 1440x2560 1600x2560 1920x1200 2560x1600
+ ifneq ($(filter $(DEVICE_RESOLUTION), $(FONT_7x16)),)
+ LOCAL_CFLAGS += -DBOARD_USE_CUSTOM_RECOVERY_FONT=\"font_7x16.h\"
+ else ifneq ($(filter $(DEVICE_RESOLUTION), $(ROBOTO_10x18)),)
+ LOCAL_CFLAGS += -DBOARD_USE_CUSTOM_RECOVERY_FONT=\"roboto_10x18.h\"
+ else ifneq ($(filter $(DEVICE_RESOLUTION), $(ROBOTO_15x24)),)
+ LOCAL_CFLAGS += -DBOARD_USE_CUSTOM_RECOVERY_FONT=\"roboto_15x24.h\"
+ else ifneq ($(filter $(DEVICE_RESOLUTION), $(ROBOTO_23x41)),)
+ LOCAL_CFLAGS += -DBOARD_USE_CUSTOM_RECOVERY_FONT=\"roboto_23x41.h\"
+ endif
endif
ifneq ($(TW_WHITELIST_INPUT),)