diff options
| -rw-r--r-- | README | 4 | ||||
| -rw-r--r-- | cm.dependencies | 6 | ||||
| -rw-r--r-- | cm.mk | 21 |
3 files changed, 31 insertions, 0 deletions
@@ -0,0 +1,4 @@ +Device configuration for Google Pixel (sailfish). + +Nothing is really here, all configuration is in device/google/marlin. + diff --git a/cm.dependencies b/cm.dependencies new file mode 100644 index 0000000..11a87e5 --- /dev/null +++ b/cm.dependencies @@ -0,0 +1,6 @@ +[ + { + "repository": "android_device_google_marlin", + "target_path": "device/google/marlin" + } +] @@ -0,0 +1,21 @@ +# Boot animation +TARGET_SCREEN_HEIGHT := 1920 +TARGET_SCREEN_WIDTH := 1280 + +# Inherit some common CM stuff. +$(call inherit-product, vendor/cm/config/common_full_phone.mk) + +# Inherit device configuration +$(call inherit-product, device/google/marlin/aosp_sailfish.mk) + +## Device identifier. This must come after all inclusions +PRODUCT_NAME := cm_sailfish +PRODUCT_BRAND := google +PRODUCT_MODEL := Pixel +TARGET_MANUFACTURER := Google +PRODUCT_RESTRICT_VENDOR_FILES := false + +PRODUCT_BUILD_PROP_OVERRIDES += \ + PRODUCT_NAME=sailfish \ + BUILD_FINGERPRINT="google/sailfish/sailfish:7.1/NDE63V/3389651:user/release-keys" \ + PRIVATE_BUILD_DESC="sailfish-user 7.1 NDE63V 3389651 release-keys" |
