forked from CyanogenMod/android_vendor_cyanogen
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change-Id: I52e0f77581d5de7e278c2d51f46b1eb5a30eaae9
- Loading branch information
1 parent
c30bda7
commit bf94d76
Showing
5 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<!-- config_desktopColumns/Rows min value is 3, so it will add 3 to whatever value you set here --> | ||
<integer name="config_desktopColumns">5</integer> | ||
<integer name="config_desktopRows">4</integer> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<!-- Whether or not to display the trackball settings --> | ||
<bool name="has_trackball">false</bool> | ||
|
||
<bool name="has_led_flash">false</bool> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
$(call inherit-product, device/advent/vega/vega.mk) | ||
|
||
# Inherit some common cyanogenmod stuff. | ||
$(call inherit-product, vendor/cyanogen/products/common_full.mk) | ||
|
||
# | ||
# Setup device specific product configuration. | ||
# | ||
PRODUCT_NAME := cyanogen_vega | ||
PRODUCT_BRAND := advent | ||
PRODUCT_DEVICE := vega | ||
PRODUCT_MODEL := Vega | ||
PRODUCT_MANUFACTURER := Advent | ||
PRODUCT_BUILD_PROP_OVERRIDES += PRODUCT_NAME=Vega BUILD_ID=GRI40 BUILD_DISPLAY_ID=GRI40 BUILD_FINGERPRINT=google/passion/passion:2.3.3/GRI40/102588:user/release-keys PRIVATE_BUILD_DESC="passion-user 2.3.3 GRI40 102588 release-keys" | ||
|
||
# Extra overlay | ||
PRODUCT_PACKAGE_OVERLAYS += vendor/cyanogen/overlay/vega | ||
|
||
# | ||
# Set ro.modversion | ||
# | ||
ifdef CYANOGEN_NIGHTLY | ||
PRODUCT_PROPERTY_OVERRIDES += \ | ||
ro.modversion=CyanogenMod-7-$(shell date +%m%d%Y)-NIGHTLY-Vega | ||
else | ||
ifdef CYANOGEN_RELEASE | ||
PRODUCT_PROPERTY_OVERRIDES += \ | ||
ro.modversion=CyanogenMod-7.0.0-RC1-Vega | ||
else | ||
PRODUCT_PROPERTY_OVERRIDES += \ | ||
ro.modversion=CyanogenMod-7.0.0-RC1-Vega-KANG | ||
endif | ||
endif | ||
|
||
# | ||
# Copy passion specific prebuilt files | ||
# | ||
PRODUCT_COPY_FILES += \ | ||
vendor/cyanogen/prebuilt/mdpi/media/bootanimation.zip:system/media/bootanimation.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters