blob: 3b932d8cfaf190774693744c31d4a1f3c1a31d5d [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 := \
24 device/samsung/manta/init.smdk5250.rc:root/init.smdk5250.rc \
25 device/samsung/manta/init.smdk5250.usb.rc:root/init.smdk5250.usb.rc \
26 device/samsung/manta/ueventd.smdk5250.rc:root/ueventd.smdk5250.rc
Dima Zavin7e497e32012-02-07 14:51:59 -080027
28#PRODUCT_COPY_FILES += \
29# $(LOCAL_KERNEL):kernel
30
Dima Zavin40cec162012-02-22 23:52:19 -080031# Input device files for smdk5250
32PRODUCT_COPY_FILES += \
33 device/samsung/manta/egalax_i2c.idc:system/usr/idc/egalax_i2c.idc \
34 device/samsung/manta/smdk5250-keypad.kl:system/usr/keylayout/smdk5250-keypad.kl \
35 device/samsung/manta/smdk5250-keypad.kcm:system/usr/keychars/smdk5250-keypad.kcm
36
Dima Zavin7e497e32012-02-07 14:51:59 -080037PRODUCT_PACKAGES := \
38 make_ext4fs
39
40PRODUCT_PROPERTY_OVERRIDES :=
41
42PRODUCT_CHARACTERISTICS := tablet,nosdcard
43
44DEVICE_PACKAGE_OVERLAYS := \
45 device/samsung/manta/overlay
46
47#HWC Hal
48#PRODUCT_PACKAGES += \
49# hwcomposer.<your arch here>
50
51PRODUCT_TAGS += dalvik.gc.type-precise
52
53PRODUCT_PACKAGES += \
54 librs_jni \
55 com.android.future.usb.accessory
56
57PRODUCT_PACKAGES += \
58 audio.primary.default \
59 audio.a2dp.default
60
61# Filesystem management tools
62PRODUCT_PACKAGES += \
63 make_ext4fs
64
65$(call inherit-product-if-exists, vendor/samsung/manta/device-vendor.mk)
66$(call inherit-product, frameworks/base/build/tablet-dalvik-heap.mk)