diff options
author | alk3pInjection <webmaster@raspii.tech> | 2023-09-15 17:12:24 +0800 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2024-01-02 00:52:16 +0800 |
commit | 395f9db105427bfa2f5afc4f933099208062f6b5 (patch) | |
tree | 955c77026e5dc03c4ee4e2d2131051f9e12d9f00 | |
parent | 37641251569f96185f7ace4a877fb8576995f7c7 (diff) |
gs201: Allow running 32-bit apps
Change-Id: Ibf1e2d8313b0a2fd09bb0cf4c17f2774f20ee15a
-rw-r--r-- | BoardConfig-common.mk | 3 | ||||
-rw-r--r-- | aosp_common.mk | 2 | ||||
-rw-r--r-- | device.mk | 2 |
3 files changed, 2 insertions, 5 deletions
diff --git a/BoardConfig-common.mk b/BoardConfig-common.mk index b22f5000..db943c51 100644 --- a/BoardConfig-common.mk +++ b/BoardConfig-common.mk @@ -32,9 +32,6 @@ TARGET_CPU_ABI := arm64-v8a TARGET_CPU_VARIANT := cortex-a55 TARGET_CPU_VARIANT_RUNTIME := cortex-a55 -# Enable 64-bit for non-zygote. -ZYGOTE_FORCE_64 := true - # Force any prefer32 targets to be compiled as 64 bit. IGNORE_PREFER32_ON_DEVICE := true diff --git a/aosp_common.mk b/aosp_common.mk index a45fd74d..6a6d96d7 100644 --- a/aosp_common.mk +++ b/aosp_common.mk @@ -17,7 +17,7 @@ # # All components inherited here go to system image # -$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit_only.mk) +$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk) $(call inherit-product, $(SRC_TARGET_DIR)/product/generic_system.mk) # Enable CSI checking @@ -995,7 +995,7 @@ include device/google/gs-common/gps/brcm/device.mk endif -$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit_only.mk) +$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk) #$(call inherit-product, hardware/google_devices/exynos5/exynos5.mk) #$(call inherit-product-if-exists, hardware/google_devices/gs201/gs201.mk) #$(call inherit-product-if-exists, vendor/google_devices/common/exynos-vendor.mk) |