summaryrefslogtreecommitdiff
path: root/device.mk
blob: fc180e63d0e580d4f2c526bcd056f8cb5d53b167 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#
# 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.juno:root/fstab.juno \
			$(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 \
                        $(LOCAL_PATH)/preboot/startup.nsh:boot/startup.nsh)

# Set custom settings
DEVICE_PACKAGE_OVERLAYS := device/linaro/juno32/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 += hwclock32

# Build libion for new double-buffering HDLCD driver
PRODUCT_PACKAGES += libion

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

# Build gralloc for Juno
PRODUCT_PACKAGES += gralloc.juno32

# Include ION tests
PRODUCT_PACKAGES += iontest \
                    ion-unit-tests

# Copy dhcpcd
PRODUCT_PACKAGES += dhcpcd.conf

# 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=""

# Copy hardware config file(s)
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 \
                        device/linaro/build/disablesuspend.sh:system/bin/disablesuspend.sh \
                        frameworks/native/data/etc/android.hardware.ethernet.xml:system/etc/permissions/android.hardware.ethernet.xml \
                        frameworks/native/data/etc/android.software.app_widgets.xml:system/etc/permissions/android.software.app_widgets.xml \
                        frameworks/native/data/etc/android.software.backup.xml:system/etc/permissions/android.software.backup.xml \
                        frameworks/native/data/etc/android.hardware.usb.accessory.xml:system/etc/permissions/android.hardware.usb.accessory.xml\
                        vexpress-firmware/board_recovery_image.tar.bz2:boot/board_recovery_image.tar.bz2\
                        vendor.tar.bz2:vendor.tar.bz2)

PRODUCT_COPY_FILES += $(call add-to-product-copy-files-if-exists,\
                        device/linaro/build/eth0_dns.sh:system/bin/eth0_dns.sh)

#Copy Graphics binaries
PRODUCT_COPY_FILES += $(call add-to-product-copy-files-if-exists,\
                        vendor/arm/32b/libGLES_mali.so:system/lib/libGLES_mali.so \
                        vendor/arm/32b/libGLES_mali.so:system/lib/egl/libGLES_mali.so)

# Copy media codecs config file
PRODUCT_COPY_FILES += device/linaro/build/media_codecs.xml:system/etc/media_codecs.xml

# Include application and binaries needed for test
$(call inherit-product-if-exists, device/linaro/build/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/juno32/howto/$(LINARO_BUILD_SPEC)/$1),)
PRODUCT_COPY_FILES += \
        device/linaro/juno32/howto/$(LINARO_BUILD_SPEC)/$1:$1
else
ifneq ($(wildcard $(TOP)/device/juno32/howto/default/$1),)
PRODUCT_COPY_FILES += \
        device/linaro/juno32/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))))