summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorscoty755 <scoty755@gmail.com>2014-03-17 00:12:25 +0900
committerscoty755 <scoty755@gmail.com>2014-03-17 00:12:25 +0900
commitdce67040e03d593a56a53a2f43722da413ad6be2 (patch)
tree19e5442177893e975fdc8841762e3a35e17a81c3
parentec9be48e9fa8773bba0584b5b31dd50e9c8566dc (diff)
Lowercasify: L01F to l01f
-rw-r--r--Android.mk2
-rw-r--r--BoardConfig.mk4
-rw-r--r--cm.mk8
-rw-r--r--device.mk2
-rw-r--r--l01f.mk34
-rwxr-xr-xsetup-makefiles.sh2
6 files changed, 43 insertions, 9 deletions
diff --git a/Android.mk b/Android.mk
index c1fc4ad..983411f 100644
--- a/Android.mk
+++ b/Android.mk
@@ -1,4 +1,4 @@
-ifneq ($(filter L01F,$(TARGET_DEVICE)),)
+ifneq ($(filter l01f,$(TARGET_DEVICE)),)
LOCAL_PATH := $(call my-dir)
diff --git a/BoardConfig.mk b/BoardConfig.mk
index 1182506..b3f2262 100644
--- a/BoardConfig.mk
+++ b/BoardConfig.mk
@@ -16,9 +16,9 @@
include device/lge/g2-common/BoardConfigCommon.mk
-TARGET_KERNEL_CONFIG := cyanogenmod_g2-dcm-perf_defconfig
+TARGET_KERNEL_CONFIG := cyanogenmod_l01f_defconfig
-TARGET_OTA_ASSERT_DEVICE := d802,g2,galbi,d800,L01F
+TARGET_OTA_ASSERT_DEVICE := d802,g2,galbi,d800,l01f
G2_DTS_TARGET := msm8974-g2-dcm
diff --git a/cm.mk b/cm.mk
index a3e2d16..0dfe175 100644
--- a/cm.mk
+++ b/cm.mk
@@ -12,13 +12,13 @@ $(call inherit-product, vendor/cm/config/common_full_phone.mk)
$(call inherit-product, vendor/cm/config/nfc_enhanced.mk)
# Inherit device configuration
-$(call inherit-product, device/lge/d802/L01F.mk)
+$(call inherit-product, device/lge/l01f/l01f.mk)
## Device identifier. This must come after all inclusions
PRODUCT_DEVICE := l01f
-PRODUCT_NAME := cm_f01f
-PRODUCT_BRAND := LGE
-PRODUCT_MODEL := LG-L01F
+PRODUCT_NAME := cm_l01f
+PRODUCT_BRAND := DOCOMO
+PRODUCT_MODEL := L01F
PRODUCT_MANUFACTURER := lge
PRODUCT_BUILD_PROP_OVERRIDES += BUILD_FINGERPRINT=lge/g2_dcm_jp/g2:4.2.2/JDQ39B/L01F10c.1378316352:user/release-keys PRIVATE_BUILD_DESC="g2_dcm_jp-user 4.2.2 JDQ39B L01F10c.1378316352 release-keys"
diff --git a/device.mk b/device.mk
index 79e737a..3b6cea5 100644
--- a/device.mk
+++ b/device.mk
@@ -14,7 +14,7 @@
# limitations under the License.
#
-$(call inherit-product-if-exists, vendor/lge/L01F/L01F-vendor.mk)
+$(call inherit-product-if-exists, vendor/lge/l01f/l01f-vendor.mk)
$(call inherit-product, device/lge/g2-common/g2.mk)
## overlays
diff --git a/l01f.mk b/l01f.mk
new file mode 100644
index 0000000..47da79c
--- /dev/null
+++ b/l01f.mk
@@ -0,0 +1,34 @@
+#
+# Copyright 2012 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.
+#
+
+# Sample: This is where we'd set a backup provider if we had one
+# $(call inherit-product, device/sample/products/backup_overlay.mk)
+
+# Get the long list of APNs
+PRODUCT_COPY_FILES := device/lge/L01F/overlay/packages/providers/TelephonyProvider/res/config.xml:system/etc/apns-conf.xml
+
+# Inherit from the common Open Source product configuration
+$(call inherit-product, $(SRC_TARGET_DIR)/product/full_base_telephony.mk)
+
+PRODUCT_DEVICE := l01f
+PRODUCT_NAME := full_l01f
+PRODUCT_BRAND := DOCOMO
+PRODUCT_MODEL := L01F
+PRODUCT_MANUFACTURER := lge
+PRODUCT_RESTRICT_VENDOR_FILES := false
+
+# Inherit from hardware-specific part of the product configuration
+$(call inherit-product, device/lge/l01f/device.mk)
diff --git a/setup-makefiles.sh b/setup-makefiles.sh
index b1ab596..bb69979 100755
--- a/setup-makefiles.sh
+++ b/setup-makefiles.sh
@@ -1,7 +1,7 @@
#!/bin/sh
VENDOR=lge
-DEVICE=L01F
+DEVICE=l01f
OUTDIR=vendor/$VENDOR/$DEVICE
MAKEFILE=../../../$OUTDIR/$DEVICE-vendor-blobs.mk