Add phhgsi_a64_a for arm32 devices with 64bits binder

This commit is contained in:
Pierre-Hugues Husson 2018-11-13 22:25:10 +01:00
parent 45e3d29136
commit 296574000c
2 changed files with 12 additions and 4 deletions

View File

@ -16,7 +16,7 @@ echo 'PRODUCT_MAKEFILES := \' > AndroidProducts.mk
for part in a ab;do
for apps in vanilla gapps foss gapps-go;do
for arch in arm64 arm;do
for arch in arm64 arm a64;do
for su in yes no;do
apps_suffix=""
apps_script=""
@ -43,9 +43,12 @@ for part in a ab;do
apps_script=''
apps_name="vanilla"
fi
if [ "$arch" == "arm" ];then
vndk="vndk-binder32.mk"
fi
if [ "$arch" == "arm" ];then
vndk="vndk-binder32.mk"
fi
if [ "$arch" == "a64" ];then
vndk="vndk32.mk"
fi
su_suffix='N'
if [ "$su" == "yes" ];then

View File

@ -0,0 +1,5 @@
include build/make/target/board/generic_arm_a/BoardConfig.mk
include device/phh/treble/board-base.mk
BOARD_SYSTEMIMAGE_PARTITION_SIZE := 1572864000
TARGET_USES_64_BIT_BINDER := true