diff options
-rw-r--r-- | BoardConfigCommon.mk | 3 | ||||
-rw-r--r-- | recovery/D6x02.sh | 11 | ||||
-rw-r--r-- | releasetools.py | 28 | ||||
-rw-r--r-- | shinano.mk | 3 |
4 files changed, 0 insertions, 45 deletions
diff --git a/BoardConfigCommon.mk b/BoardConfigCommon.mk index 24037df..d90f42e 100644 --- a/BoardConfigCommon.mk +++ b/BoardConfigCommon.mk @@ -132,6 +132,3 @@ TARGET_RECOVERY_FSTAB := device/sony/shinano-common/rootdir/fstab.qcom TARGET_RECOVERY_PIXEL_FORMAT := "RGBX_8888" BOARD_HAS_NO_SELECT_BUTTON := true BOARD_USE_CUSTOM_RECOVERY_FONT := \"roboto_23x41.h\" - -# Releasetools -TARGET_RELEASETOOLS_EXTENSIONS := device/sony/shinano-common diff --git a/recovery/D6x02.sh b/recovery/D6x02.sh deleted file mode 100644 index 0bdcfe0..0000000 --- a/recovery/D6x02.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/sbin/sh - -mkdir -p /lta-label -mount -o ro /dev/block/platform/msm_sdcc.1/by-name/LTALabel /lta-label -ls lta-label/*.html | grep -q c6[89]02 -if [ $? -eq 0 ]; then - mount /dev/block/platform/msm_sdcc.1/by-name/system /system - cp /system/etc/firmware/c6x02/* /system/etc/firmware/ - umount /system -fi -umount /lta-label diff --git a/releasetools.py b/releasetools.py deleted file mode 100644 index 54dc6b6..0000000 --- a/releasetools.py +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright (C) 2012 The Android Open Source Project -# Copyright (C) 2014 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. - -"""Custom OTA Package commands for shinano""" - -import os - -TARGET_DIR = os.getenv('OUT') -TARGET_DEVICE = os.getenv('CM_BUILD') - -def FullOTA_InstallEnd(self): - if TARGET_DEVICE == "honami" or TARGET_DEVICE == "togari": - self.output_zip.write(os.path.join(TARGET_DIR, "D6x02.sh"), "D6x02.sh") - self.script.AppendExtra('package_extract_file("D6x02.sh", "/tmp/D6x02.sh");') - self.script.AppendExtra('set_perm(0, 0, 0777, "/tmp/D6x02.sh");') - self.script.AppendExtra('run_program("/tmp/D6x02.sh");') @@ -49,9 +49,6 @@ PRODUCT_COPY_FILES += \ PRODUCT_PACKAGES += \ extract_elf_ramdisk -PRODUCT_COPY_FILES += \ - $(LOCAL_PATH)/recovery/D6x02.sh:D6x02.sh - # Sbin PRODUCT_COPY_FILES += \ $(COMMON_PATH)/rootdir/charger:root/charger \ |