summaryrefslogtreecommitdiff
authorXindong Xu <xindong.xu@amlogic.com>2018-03-26 09:18:29 (GMT)
committer Xindong Xu <xindong.xu@amlogic.com>2018-03-26 09:18:29 (GMT)
commiteb9256e07e37b42023a067fd139a8bc47afaeb17 (patch)
treef248af18561d208b311ed6d5fc7dd21c7faf5137
parent78b378c6c233cbbeabb6b05a1fa60c06a0469e7c (diff)
downloadeinstein-eb9256e07e37b42023a067fd139a8bc47afaeb17.zip
einstein-eb9256e07e37b42023a067fd139a8bc47afaeb17.tar.gz
einstein-eb9256e07e37b42023a067fd139a8bc47afaeb17.tar.bz2
einstein: build as 32 bit default [7/8]
PD# NONE build as 32 bit default Change-Id: Id35e6534ccc3d55e5d1750f2171739ccc5243413
Diffstat
-rw-r--r--BoardConfig.mk2
-rw-r--r--einstein.mk3
2 files changed, 2 insertions, 3 deletions
diff --git a/BoardConfig.mk b/BoardConfig.mk
index 2743f46..88a59a3 100644
--- a/BoardConfig.mk
+++ b/BoardConfig.mk
@@ -14,7 +14,7 @@
# limitations under the License.
#
-ifeq ($(ANDROID_BUILD_TYPE), 32)
+ifneq ($(ANDROID_BUILD_TYPE), 64)
TARGET_CPU_ABI := armeabi-v7a
TARGET_CPU_ABI2 := armeabi
TARGET_CPU_SMP := true
diff --git a/einstein.mk b/einstein.mk
index f14f313..9e33d1f 100644
--- a/einstein.mk
+++ b/einstein.mk
@@ -17,13 +17,12 @@
# build for Meson reference board.
#
-ANDROID_BUILD_TYPE := 64
# Dynamic enable start/stop zygote_secondary in 64bits
# and 32bit system, default closed
#TARGET_DYNAMIC_ZYGOTE_SECONDARY_ENABLE := true
# Inherit from those products. Most specific first.
-ifneq ($(ANDROID_BUILD_TYPE), 32)
+ifeq ($(ANDROID_BUILD_TYPE), 64)
ifeq ($(TARGET_DYNAMIC_ZYGOTE_SECONDARY_ENABLE), true)
$(call inherit-product, device/amlogic/common/dynamic_zygote_seondary/dynamic_zygote_64_bit.mk)
else