device_phh_treble/generate.sh

103 lines
2.3 KiB
Bash
Raw Normal View History

#!/bin/bash
rom_script=''
if [ -n "$1" ];then
if echo "$1" | grep -qF /;then
2018-08-30 12:25:08 +00:00
rom_script=''
for i in "$@";do
rom_script="$rom_script"$'\n''$(call inherit-product, '$i')'
done
else
rom_script='$(call inherit-product, device/phh/treble/'$1'.mk)'
fi
fi
echo 'PRODUCT_MAKEFILES := \' > AndroidProducts.mk
for part in a ab;do
2018-05-17 20:19:54 +00:00
for apps in vanilla gapps foss gapps-go;do
for arch in arm64 arm a64;do
2017-12-19 12:08:26 +00:00
for su in yes no;do
apps_suffix=""
apps_script=""
apps_name=""
extra_packages=""
vndk="vndk.mk"
optional_base=""
2017-12-19 12:08:26 +00:00
if [ "$apps" == "gapps" ];then
apps_suffix="g"
apps_script='$(call inherit-product, device/phh/treble/gapps.mk)'
apps_name="with GApps"
fi
2018-05-17 20:19:54 +00:00
if [ "$apps" == "gapps-go" ];then
apps_suffix="o"
apps_script='$(call inherit-product, device/phh/treble/gapps-go.mk)'
2018-05-18 12:59:22 +00:00
apps_name="Go"
2018-05-17 20:19:54 +00:00
fi
2017-12-19 12:08:26 +00:00
if [ "$apps" == "foss" ];then
apps_suffix="f"
apps_script='$(call inherit-product, vendor/foss/foss.mk)'
apps_name="with FOSS apps"
fi
if [ "$apps" == "vanilla" ];then
apps_suffix="v"
apps_script=''
apps_name="vanilla"
fi
if [ "$arch" == "arm" ];then
vndk="vndk-binder32.mk"
fi
if [ "$arch" == "a64" ];then
vndk="vndk32.mk"
fi
2017-12-19 12:08:26 +00:00
su_suffix='N'
if [ "$su" == "yes" ];then
su_suffix='S'
extra_packages+=' phh-su me.phh.superuser'
2017-12-19 12:08:26 +00:00
fi
part_suffix='a'
if [ "$part" == 'ab' ];then
part_suffix='b'
else
optional_base='$(call inherit-product, device/phh/treble/base-sas.mk)'
fi
target="treble_${arch}_${part_suffix}${apps_suffix}${su_suffix}"
2017-12-19 12:08:26 +00:00
2019-09-12 18:45:28 +00:00
baseArch="$arch"
if [ "$arch" = "a64" ];then
baseArch="arm"
fi
zygote=32
if [ "$arch" = "arm64" ];then
zygote=64_32
fi
2017-12-19 12:08:26 +00:00
cat > ${target}.mk << EOF
2019-10-21 15:42:05 +00:00
TARGET_GAPPS_ARCH := ${baseArch}
\$(call inherit-product, device/phh/treble/base-pre.mk)
2019-09-12 18:45:28 +00:00
include build/make/target/product/aosp_${baseArch}_ab.mk
\$(call inherit-product, device/phh/treble/base.mk)
$optional_base
$apps_script
$rom_script
PRODUCT_NAME := $target
2018-03-04 16:46:28 +00:00
PRODUCT_DEVICE := phhgsi_${arch}_$part
PRODUCT_BRAND := Phh
PRODUCT_SYSTEM_BRAND := Phh
PRODUCT_MODEL := Phh-Treble $apps_name
2017-12-19 12:08:26 +00:00
PRODUCT_PACKAGES += $extra_packages
2019-09-12 18:45:28 +00:00
EOF
echo -e '\t$(LOCAL_DIR)/'$target.mk '\' >> AndroidProducts.mk
2017-12-19 12:08:26 +00:00
done
done
done
done
echo >> AndroidProducts.mk