blob: 8468bff678b0eac692fb5e70a1fd26e42f70e3a6 [file] [log] [blame]
Dima Zavin7e497e32012-02-07 14:51:59 -08001#
2# Copyright (C) 2011 The Android Open-Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17ifeq ($(TARGET_PREBUILT_KERNEL),)
18LOCAL_KERNEL := device/samsung/manta/kernel
19else
20LOCAL_KERNEL := $(TARGET_PREBUILT_KERNEL)
21endif
22
Dima Zavina67dcf22012-02-22 14:52:22 -080023PRODUCT_COPY_FILES := \
Dima Zavinb4e71752012-02-22 14:55:11 -080024 $(LOCAL_KERNEL):kernel \
Colin Cross29380e62012-03-06 17:41:22 -080025 device/samsung/manta/init.manta.rc:root/init.manta.rc \
26 device/samsung/manta/init.manta.usb.rc:root/init.manta.usb.rc \
27 device/samsung/manta/ueventd.manta.rc:root/ueventd.manta.rc
28
29# Init files for booting smdk5250 with a manta image
30PRODUCT_COPY_FILES += \
Dima Zavina67dcf22012-02-22 14:52:22 -080031 device/samsung/manta/init.smdk5250.rc:root/init.smdk5250.rc \
32 device/samsung/manta/init.smdk5250.usb.rc:root/init.smdk5250.usb.rc \
33 device/samsung/manta/ueventd.smdk5250.rc:root/ueventd.smdk5250.rc
Dima Zavin7e497e32012-02-07 14:51:59 -080034
Dima Zavin40cec162012-02-22 23:52:19 -080035# Input device files for smdk5250
36PRODUCT_COPY_FILES += \
37 device/samsung/manta/egalax_i2c.idc:system/usr/idc/egalax_i2c.idc \
38 device/samsung/manta/smdk5250-keypad.kl:system/usr/keylayout/smdk5250-keypad.kl \
39 device/samsung/manta/smdk5250-keypad.kcm:system/usr/keychars/smdk5250-keypad.kcm
40
Dima Zavin4dcb3832012-03-02 10:54:58 -080041PRODUCT_COPY_FILES += \
42 frameworks/base/data/etc/tablet_core_hardware.xml:system/etc/permissions/tablet_core_hardware.xml \
43 frameworks/base/data/etc/android.hardware.touchscreen.multitouch.jazzhand.xml:system/etc/permissions/android.hardware.touchscreen.multitouch.jazzhand.xml
44
Dima Zavin7e497e32012-02-07 14:51:59 -080045PRODUCT_PACKAGES := \
46 make_ext4fs
47
Dima Zavin9702ecd2012-03-02 16:30:21 -080048PRODUCT_AAPT_CONFIG := normal hdpi
49PRODUCT_AAPT_PREF_CONFIG := hdpi
Dima Zavin7e497e32012-02-07 14:51:59 -080050
51PRODUCT_CHARACTERISTICS := tablet,nosdcard
52
53DEVICE_PACKAGE_OVERLAYS := \
54 device/samsung/manta/overlay
55
Dima Zavine6046d32012-03-01 18:45:13 -080056# for now include gralloc here. should come from hardware/samsung_slsi/exynos5
57PRODUCT_PACKAGES += \
58 gralloc.exynos5
Dima Zavin7e497e32012-02-07 14:51:59 -080059
60PRODUCT_TAGS += dalvik.gc.type-precise
61
62PRODUCT_PACKAGES += \
63 librs_jni \
64 com.android.future.usb.accessory
65
66PRODUCT_PACKAGES += \
67 audio.primary.default \
68 audio.a2dp.default
69
70# Filesystem management tools
71PRODUCT_PACKAGES += \
72 make_ext4fs
73
Dima Zavin02889682012-02-22 23:52:45 -080074$(call inherit-product-if-exists, vendor/samsung_slsi/exynos5/exynos5-vendor.mk)
Dima Zavin7e497e32012-02-07 14:51:59 -080075$(call inherit-product-if-exists, vendor/samsung/manta/device-vendor.mk)
76$(call inherit-product, frameworks/base/build/tablet-dalvik-heap.mk)