# # Copyright (C) 2011 The Android Open-Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # Adjust the dalvik heap to be appropriate for a tablet. $(call inherit-product-if-exists, frameworks/base/build/tablet-dalvik-heap.mk) $(call inherit-product-if-exists, frameworks/native/build/tablet-dalvik-heap.mk) # Use our own init.rc TARGET_PROVIDES_INIT_RC := true PRODUCT_COPY_FILES += $(call add-to-product-copy-files-if-exists,\ $(LOCAL_PATH)/fstab.juno:root/fstab.juno \ $(LOCAL_PATH)/init.rc:root/init.rc \ $(LOCAL_PATH)/init.juno.rc:root/init.juno.rc \ $(LOCAL_PATH)/juno_monkey_blacklist:data/juno_monkey_blacklist \ $(LOCAL_PATH)/juno.kl:system/usr/keylayout/juno.kl) # Copy preboot binaries PRE_BOOT_FILES := bl1.bin fip.bin PRODUCT_COPY_FILES += $(call add-to-product-copy-files-if-exists,\ $(LOCAL_PATH)/preboot/bl1.bin:boot/bl1.bin \ $(LOCAL_PATH)/preboot/fip.bin:boot/fip.bin) # Set custom settings DEVICE_PACKAGE_OVERLAYS := device/linaro/juno/overlay # Add openssh support for remote debugging and job submission PRODUCT_PACKAGES += ssh sftp scp sshd ssh-keygen sshd_config start-ssh # Build and run only ART PRODUCT_RUNTIMES := runtime_libart_default # Needed to sync the system clock with the RTC clock PRODUCT_PACKAGES += hwclock # Set zygote config PRODUCT_DEFAULT_PROPERTY_OVERRIDES += ro.zygote=zygote64_32 PRODUCT_COPY_FILES += system/core/rootdir/init.zygote64_32.rc:root/init.zygote64_32.rc #enable consle even built in user mode ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=1 # set ART to use compilation mode # ART will now what to pick up for compilation if this setting is not set. ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.dex2oat-flags="" # Copy hardware config file(s) PRODUCT_COPY_FILES += $(call add-to-product-copy-files-if-exists,\ device/linaro/common/android.hardware.screen.xml:system/etc/permissions/android.hardware.screen.xml \ device/linaro/common/disablesuspend.sh:system/bin/disablesuspend.sh \ frameworks/native/data/etc/android.hardware.bluetooth.xml:system/etc/permissions/android.hardware.bluetooth.xml \ frameworks/native/data/etc/android.hardware.usb.accessory.xml:system/etc/permissions/android.hardware.usb.accessory.xml) #Copy Graphics binaries PRODUCT_COPY_FILES += $(call add-to-product-copy-files-if-exists,\ vendor/arm/64b/libGLES_mali.so:system/lib64/libGLES_mali.so \ vendor/arm/64b/libGLES_mali.so:system/lib64/egl/libGLES_mali.so \ vendor/arm/64b/gralloc.juno.so:system/lib64/hw/gralloc.juno.so \ vendor/arm/32b/libGLES_mali.so:system/lib/libGLES_mali.so \ vendor/arm/32b/libGLES_mali.so:system/lib/egl/libGLES_mali.so \ vendor/arm/32b/gralloc.juno.so:system/lib/hw/gralloc.juno.so) # Include application and binaries needed for test $(call inherit-product-if-exists, device/linaro/common/extra-and-tests.mk) # Include Android userspace tests $(call inherit-product-if-exists, external/linaro-android-userspace-test/product.mk) ####### Copy build and install howtos for this build ######## define copy-howto ifneq ($(wildcard $(TOP)/device/linaro/juno/howto/$(LINARO_BUILD_SPEC)/$1),) PRODUCT_COPY_FILES += \ device/linaro/juno/howto/$(LINARO_BUILD_SPEC)/$1:$1 else ifneq ($(wildcard $(TOP)/device/juno/howto/default/$1),) PRODUCT_COPY_FILES += \ device/linaro/juno/howto/default/$1:$1 endif endif endef HOWTOS := \ HOWTO_install.txt \ HOWTO_getsourceandbuild.txt \ HOWTO_flashfirmware.txt \ HOWTO_releasenotes.txt \ HOWTO_rtsm.txt ifneq ($(wildcard $(TOP)/build-info),) PRODUCT_COPY_FILES += \ build-info/BUILD-INFO.txt:BUILD-INFO.txt endif $(foreach howto,$(HOWTOS),$(eval $(call copy-howto,$(howto))))