From cffde6c7d84ebd11090ddbde8b3c016cad1943dd Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Tue, 25 Apr 2017 21:39:11 +0200 Subject: remove the split functionality from the update creation Change-Id: I036cabff089a2cf464c887ee78b702637cce08b0 --- bin/update/create_full_mar.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'bin') 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]) -- cgit