summaryrefslogtreecommitdiff
path: root/device.mk
blob: cf9ad35d289ad8a358bf01aca0bba2b08fa4d89b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#
# 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)

PRODUCT_COPY_FILES += $(call add-to-product-copy-files-if-exists,\
			$(LOCAL_PATH)/fstab.fvpbase:root/fstab.fvpbase \
			$(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 \
                        $(LOCAL_PATH)/preboot/startup.nsh:boot/startup.nsh)

# Set custom settings
DEVICE_PACKAGE_OVERLAYS := $(LOCAL_PATH)/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

# Build gatord daemon for DS-5/Streamline
PRODUCT_PACKAGES += gatord

# 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

#set this product to use fake_battery
ADDITIONAL_DEFAULT_PROPERTIES += ro.boot.fake_battery=1

PRODUCT_COPY_FILES += $(call add-to-product-copy-files-if-exists,\
                        device/linaro/build/android.hardware.screen.xml:system/etc/permissions/android.hardware.screen.xml \
            frameworks/native/data/etc/android.software.backup.xml:system/etc/permissions/android.software.backup.xml \
            frameworks/native/data/etc/android.hardware.ethernet.xml:system/etc/permissions/android.hardware.ethernet.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,\
                        frameworks/native/data/etc/android.software.app_widgets.xml:system/etc/permissions/android.software.app_widgets.xml)

PRODUCT_COPY_FILES += $(LOCAL_PATH)/monkey_black_list:data/monkey_black_list

$(call inherit-product-if-exists, device/linaro/build/common-device.mk)

####### Copy build and install howtos for this build ########
define copy-howto
ifneq ($(wildcard $(TOP)/$(LOCAL_PATH)/howto/$(LINARO_BUILD_SPEC)/$1),)
PRODUCT_COPY_FILES += \
        $(LOCAL_PATH)/howto/$(LINARO_BUILD_SPEC)/$1:$1
else
ifneq ($(wildcard $(TOP)/$(LOCAL_PATH)/howto/default/$1),)
PRODUCT_COPY_FILES += \
        $(LOCAL_PATH)/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))))