-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
m7: split device tree into m7ul, m7att, m7spr, m7tmo
- Loading branch information
1 parent
ed716e6
commit 010e62d
Showing
13 changed files
with
80 additions
and
215 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
Copyright 2013 - The CyanogenMod Project | ||
|
||
Device configuration for the HTC One (Sprint model). |
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 |
---|---|---|
@@ -1,28 +1,12 @@ | ||
$(call inherit-product, vendor/cm/config/common_full_phone.mk) | ||
$(call inherit-product, device/htc/m7spr/full_m7spr.mk) | ||
|
||
$(call inherit-product, vendor/cm/config/cdma.mk) | ||
|
||
# Enhanced NFC | ||
$(call inherit-product, vendor/cm/config/nfc_enhanced.mk) | ||
|
||
# Inherit device configuration | ||
$(call inherit-product, device/htc/m7wls/device_m7wls.mk) | ||
|
||
# Device naming | ||
PRODUCT_DEVICE := m7wls | ||
PRODUCT_NAME := cm_m7wls | ||
PRODUCT_BRAND := htc | ||
PRODUCT_MODEL := HTC One | ||
PRODUCT_MANUFACTURER := HTC | ||
|
||
# Set build fingerprint / ID / Product Name ect. | ||
PRODUCT_BUILD_PROP_OVERRIDES += PRODUCT_NAME=htc_m7wls BUILD_ID=JZO54K BUILD_FINGERPRINT="htc/m7wls/m7wls:4.1.2/JZO54K/166937.7:user/release-keys" PRIVATE_BUILD_DESC="1.29.651.7 CL166937 release-keys" | ||
|
||
# Release name | ||
PRODUCT_RELEASE_NAME := m7wls | ||
$(call inherit-product, vendor/cm/config/common_full_phone.mk) | ||
|
||
# Boot animation | ||
TARGET_SCREEN_HEIGHT := 1920 | ||
TARGET_SCREEN_WIDTH := 1080 | ||
PRODUCT_BUILD_PROP_OVERRIDES += PRODUCT_NAME=m7wls BUILD_ID=JZO54K BUILD_FINGERPRINT="htc/m7wls/m7wls:4.1.2/JZO54K/166937.7:user/release-keys" PRIVATE_BUILD_DESC="1.29.651.7 CL166937 release-keys" | ||
|
||
-include vendor/cm/config/common_versions.mk | ||
PRODUCT_NAME := cm_m7spr | ||
PRODUCT_DEVICE := m7spr |
File renamed without changes.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,38 +1,7 @@ | ||
#!/bin/sh | ||
|
||
# Copyright (C) 2013 The CyanogenMod Project | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
set -e | ||
|
||
# This file is generated by device/common/generate-blob-scripts.sh - DO NOT EDIT | ||
|
||
VENDOR=htc | ||
DEVICE=m7wls | ||
|
||
mkdir -p ../../../vendor/$VENDOR/$DEVICE/proprietary | ||
|
||
adb root | ||
adb wait-for-device | ||
|
||
echo "Pulling proprietary files..." | ||
for FILE in `cat ../$DEVICE/proprietary-files.txt | grep -v ^# | grep -v ^$`; do | ||
DIR=`dirname $FILE` | ||
if [ ! -d ../../../vendor/$VENDOR/$DEVICE/proprietary/$DIR ]; then | ||
mkdir -p ../../../vendor/$VENDOR/$DEVICE/proprietary/$DIR | ||
fi | ||
adb pull /$FILE ../../../vendor/$VENDOR/$DEVICE/proprietary/$FILE | ||
done | ||
|
||
./../../../device/${VENDOR}/${DEVICE}/setup-makefiles.sh | ||
|
||
./../../../device/${VENDOR}/${DEVICE}-common/extract-files.sh | ||
export DEVICE=m7spr | ||
export VENDOR=htc | ||
./../m7-common/extract-files.sh $@ |
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,36 @@ | ||
# Copyright (C) 2011 The Android Open Source Project | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# | ||
# This file is the build configuration for a full Android | ||
# build for maguro hardware. This cleanly combines a set of | ||
# device-specific aspects (drivers) with a device-agnostic | ||
# product configuration (apps). Except for a few implementation | ||
# details, it only fundamentally contains two inherit-product | ||
# lines, full and maguro, hence its name. | ||
# | ||
|
||
|
||
# Inherit from those products. Most specific first. | ||
$(call inherit-product, $(SRC_TARGET_DIR)/product/full_base_telephony.mk) | ||
|
||
# Inherit from m7spr device | ||
$(call inherit-product, device/htc/m7spr/device.mk) | ||
|
||
# Set those variables here to overwrite the inherited values. | ||
PRODUCT_NAME := full_m7spr | ||
PRODUCT_DEVICE := m7spr | ||
PRODUCT_BRAND := htc | ||
PRODUCT_MANUFACTURER := htc | ||
PRODUCT_MODEL := One |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
add_lunch_combo cm_m7spr-eng |