blob: 971390055e04bdabb96ce877869b4d49788380a9 [file] [log] [blame]
Bruce Bearec25e5032010-04-28 14:12:52 -07001# This is a generic product that isn't specialized for a specific device.
2# It includes the base Android platform. If you need Google-specific features,
3# you should derive from generic_with_google.mk
4
5PRODUCT_PACKAGES := \
6 AlarmClock \
7 AlarmProvider \
8 Calendar \
9 Camera \
10 DrmProvider \
11 LatinIME \
12 Mms \
13 Music \
14 Settings \
15 Sync \
16 Updater \
17 CalendarProvider \
18 SubscribedFeedsProvider \
19 SyncProvider
20
21$(call inherit-product, $(SRC_TARGET_DIR)/product/core.mk)
22
23# Overrides
24PRODUCT_BRAND := generic_x86
25PRODUCT_DEVICE := generic_x86
26PRODUCT_NAME := generic_x86
27PRODUCT_POLICY := android.policy_phone
Bruce Bearea1972812010-05-04 14:49:38 -070028
29# If running on an emulator or some other device that has a LAN connection
30# that isn't a wifi connection. This will instruct init.rc to enable the
31# network connection so that you can use it with ADB
32ifdef NET_ETH0_STARTONBOOT
33 PRODUCT_PROPERTY_OVERRIDES += net.eth0.startonboot=1
34endif