blob: 91ceb9710dd54c5e27b4ed50126e78957b456ef3 [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
31PRODUCT_PACKAGES := \
32 make_ext4fs
33
34PRODUCT_PROPERTY_OVERRIDES :=
35
36PRODUCT_CHARACTERISTICS := tablet,nosdcard
37
38DEVICE_PACKAGE_OVERLAYS := \
39 device/samsung/manta/overlay
40
41#HWC Hal
42#PRODUCT_PACKAGES += \
43# hwcomposer.<your arch here>
44
45PRODUCT_TAGS += dalvik.gc.type-precise
46
47PRODUCT_PACKAGES += \
48 librs_jni \
49 com.android.future.usb.accessory
50
51PRODUCT_PACKAGES += \
52 audio.primary.default \
53 audio.a2dp.default
54
55# Filesystem management tools
56PRODUCT_PACKAGES += \
57 make_ext4fs
58
59$(call inherit-product-if-exists, vendor/samsung/manta/device-vendor.mk)
60$(call inherit-product, frameworks/base/build/tablet-dalvik-heap.mk)