summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-04-25 21:39:11 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-05-19 02:49:19 +0200
commitcca48ff4c8f9945b4bf29ed559f7f84e5ab6074c (patch)
treee1e563176d9e3a5d8296e26ebf24e64c3d2472e6
parentadd a way to strip symbols from the tarballs (diff)
downloadcore-cca48ff4c8f9945b4bf29ed559f7f84e5ab6074c.tar.gz
core-cca48ff4c8f9945b4bf29ed559f7f84e5ab6074c.zip
remove the split functionality from the update creation
Change-Id: I036cabff089a2cf464c887ee78b702637cce08b0
-rwxr-xr-xbin/update/create_full_mar.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/update/create_full_mar.py b/bin/update/create_full_mar.py
index 25e654c9cd8b..ebe2a01cd2cf 100755
--- a/bin/update/create_full_mar.py
+++ b/bin/update/create_full_mar.py
@@ -38,10 +38,6 @@ def main():
uncompress_dir = uncompress_file_to_dir(tar_file, temp_dir)
- # on linux we should stip the symbols from the libraries
- if sys.platform.startswith('linux'):
- subprocess.call('strip -g ' + os.path.join(uncompress_dir, 'program/') + '*', shell=True)
-
mar_executable = os.environ.get('MAR', 'mar')
mar_file = make_mar_name(target_dir, filename_prefix)
subprocess.call([os.path.join(current_dir_path, 'make_full_update.sh'), mar_file, uncompress_dir])