aboutsummaryrefslogtreecommitdiff
path: root/releasetools.py
diff options
context:
space:
mode:
authorChirayu Desai <cdesai@cyanogenmod.org>2014-09-06 11:55:06 +0530
committerChirayu Desai <cdesai@cyanogenmod.org>2014-09-13 21:57:07 +0530
commit98e9a62c5726c94735853bb45e1134ab2368aa04 (patch)
tree58d3dd5677b376e8f50ace8e16175dfe81740f94 /releasetools.py
parent0bdaf260b6c8c70ffd718e5be6eb0022be6b225b (diff)
Move releasetools extensions to sirius
Change-Id: I87d647edb5dee45a9b19596454cf5087bea9d52c
Diffstat (limited to 'releasetools.py')
-rw-r--r--releasetools.py28
1 files changed, 0 insertions, 28 deletions
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");')