From e3c595dbc3bcaa07ca0406e9177e7a9b1e08212c Mon Sep 17 00:00:00 2001 From: roynatech2544 Date: Thu, 7 Dec 2023 14:16:31 +0900 Subject: [PATCH] a10: Make makefile generator set mini gapps on A10 --- universal7885-common/setup.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/universal7885-common/setup.sh b/universal7885-common/setup.sh index c2c3f1e..a6f4b6a 100755 --- a/universal7885-common/setup.sh +++ b/universal7885-common/setup.sh @@ -33,3 +33,8 @@ if echo $HD_DEV | grep $DEVICE 2>&1 >/dev/null; then else echo "TARGET_BOOT_ANIMATION_RES := 1080" >>${DEV}/"$VENDOR"_${DEVICE}.mk fi + +A10_DEV="a10dd a10" +if echo $A10_DEV | grep $DEVICE 2>&1 >/dev/null; then + echo "TARGET_USES_MINI_GAPPS := true" >>${DEV}/"$VENDOR"_${DEVICE}.mk +fi