blob: d22a4583fd877252cdc710620723fbe3965b89cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Inherit AOSP device configuration for generic target
$(call inherit-product, build/target/product/full.mk)
# Inherit some common cyanogenmod stuff.
$(call inherit-product, vendor/cyanogen/products/common_full.mk)
#
# Setup device specific product configuration.
#
PRODUCT_NAME := cyanogen_generic
PRODUCT_BRAND := cyanogenmod
PRODUCT_DEVICE := generic
PRODUCT_MODEL := CyanogenMod
PRODUCT_MANUFACTURER := CyanogenMod
#
# Move dalvik cache to data partition where there is more room to solve startup problems
#
PRODUCT_PROPERTY_OVERRIDES += dalvik.vm.dexopt-data-only=1
# Generic modversion
ro.modversion=CyanogenMod-7
|