diff options
author | Brian Carlstrom <bdc@google.com> | 2014-06-16 16:51:42 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2014-06-16 23:59:43 -0700 |
commit | d79504631926bbdd1bdc721e8824fcb8a9952f54 (patch) | |
tree | b8d8f7af26b770d07c26e2f212e1efde8a44ace6 /target | |
parent | 624220c18a6fd4cabbc75344248eb770985df93c (diff) | |
download | build-d79504631926bbdd1bdc721e8824fcb8a9952f54.zip build-d79504631926bbdd1bdc721e8824fcb8a9952f54.tar.gz build-d79504631926bbdd1bdc721e8824fcb8a9952f54.tar.bz2 |
Make default 64-bit primary, 32-bit secondary
Change-Id: I2613a5072e2778307eebdc95d81f184f748ce9f5
Diffstat (limited to 'target')
-rw-r--r-- | target/product/core_64_bit.mk | 8 | ||||
-rwxr-xr-x | target/product/full_x86_64.mk | 4 |
2 files changed, 4 insertions, 8 deletions
diff --git a/target/product/core_64_bit.mk b/target/product/core_64_bit.mk index 971b6bd..76e2a36 100644 --- a/target/product/core_64_bit.mk +++ b/target/product/core_64_bit.mk @@ -22,12 +22,12 @@ # For now this will allow 64-bit apps, but still compile all apps with JNI # for 32-bit only. -# Copy the 32-bit primary, 64-bit secondary zygote startup script -PRODUCT_COPY_FILES += system/core/rootdir/init.zygote32_64.rc:root/init.zygote32_64.rc +# Copy the 64-bit primary, 32-bit secondary zygote startup script +PRODUCT_COPY_FILES += system/core/rootdir/init.zygote64_32.rc:root/init.zygote64_32.rc -# Set the zygote property to select the 32-bit primary, 64-bit secondary script +# Set the zygote property to select the 64-bit primary, 32-bit secondary script # This line must be parsed before the one in core_minimal.mk -PRODUCT_DEFAULT_PROPERTY_OVERRIDES += ro.zygote=zygote32_64 +PRODUCT_DEFAULT_PROPERTY_OVERRIDES += ro.zygote=zygote64_32 TARGET_SUPPORTS_32_BIT_APPS := true TARGET_SUPPORTS_64_BIT_APPS := true diff --git a/target/product/full_x86_64.mk b/target/product/full_x86_64.mk index cd401a8..d9c0c1e 100755 --- a/target/product/full_x86_64.mk +++ b/target/product/full_x86_64.mk @@ -23,10 +23,6 @@ # that isn't a wifi connection. This will instruct init.rc to enable the # network connection so that you can use it with ADB -PRODUCT_DEFAULT_PROPERTY_OVERRIDES += ro.zygote=zygote64_32 -PRODUCT_COPY_FILES += system/core/rootdir/init.zygote64_32.rc:root/init.zygote64_32.rc - - $(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk) $(call inherit-product, $(SRC_TARGET_DIR)/product/aosp_base_telephony.mk) $(call inherit-product, $(SRC_TARGET_DIR)/board/generic_x86_64/device.mk) |