# # 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.fvpbase:root/fstab.fvpbase \ $(LOCAL_PATH)/init.rc:root/init.rc \ $(LOCAL_PATH)/init.fvpbase.rc:root/init.fvpbase.rc \ $(LOCAL_PATH)/OpenGLwallpapers:system/etc/graphics/OpenGLwallpapers \ $(LOCAL_PATH)/fvpbase.kl:system/usr/keylayout/fvpbase.kl) # Copy preboot binaries PRE_BOOT_FILES := bl1.bin fvp_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/fvp_fip.bin) # Set custom settings DEVICE_PACKAGE_OVERLAYS := device/linaro/vexpress/overlay # FVP base models do s/w rendering PRODUCT_PACKAGES += libGLES_android # 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 # 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-filter="" 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 \ 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) PRODUCT_COPY_FILES += $(call add-to-product-copy-files-if-exists,\ device/linaro/common/eth0_dns.sh:system/bin/eth0_dns.sh) # Copy media codecs config file PRODUCT_COPY_FILES += device/linaro/common/media_codecs.xml:system/etc/media_codecs.xml # 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/vexpress/howto/$(LINARO_BUILD_SPEC)/$1),) PRODUCT_COPY_FILES += \ device/linaro/vexpress/howto/$(LINARO_BUILD_SPEC)/$1:$1 else ifneq ($(wildcard $(TOP)/device/linaro/vexpress/howto/default/$1),) PRODUCT_COPY_FILES += \ device/linaro/vexpress/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))))