summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRuslan Bilovol <rbilovol@cisco.com>2017-11-22 13:20:05 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-07-24 11:52:07 +0100
commit6671a4d980c8bef8f402780a308f6c43a25044aa (patch)
tree60d32526f61406efe889be729b56b7b5820ac770 /scripts
parent11efc94742088ec6fbf2a86000e98286b0b529ef (diff)
downloadopenembedded-core-6671a4d980c8bef8f402780a308f6c43a25044aa.tar.gz
relocate_sdk.py: remove hardcoded SDK path
This patch removes hardcodes added to relocate_sdk.py during SDK build, making it flexible and reusable. Now default SDK path is passed to the script as parameter rather then harcoded inside it. This allows to reuse this script for multiple relocations, and adds possibility to relocate SDK multiple times Signed-off-by: Ruslan Bilovol <rbilovol@cisco.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/relocate_sdk.py17
1 files changed, 9 insertions, 8 deletions
diff --git a/scripts/relocate_sdk.py b/scripts/relocate_sdk.py
index c752fa2c61..0d5a6f5161 100755
--- a/scripts/relocate_sdk.py
+++ b/scripts/relocate_sdk.py
@@ -38,8 +38,6 @@ else:
def b(x):
return x.encode(sys.getfilesystemencoding())
-old_prefix = re.compile(b("##DEFAULT_INSTALL_DIR##"))
-
def get_arch():
f.seek(0)
e_ident =f.read(16)
@@ -212,19 +210,22 @@ def change_dl_sysdirs(elf_file_name):
f.write(sysdirslen)
# MAIN
-if len(sys.argv) < 4:
+if len(sys.argv) < 5:
sys.exit(-1)
# In python > 3, strings may also contain Unicode characters. So, convert
# them to bytes
if sys.version_info < (3,):
- new_prefix = sys.argv[1]
- new_dl_path = sys.argv[2]
+ new_prefix = sys.argv[2]
+ new_dl_path = sys.argv[3]
else:
- new_prefix = sys.argv[1].encode()
- new_dl_path = sys.argv[2].encode()
+ new_prefix = sys.argv[2].encode()
+ new_dl_path = sys.argv[3].encode()
+
+executables_list = sys.argv[4:]
-executables_list = sys.argv[3:]
+old_prefix_ne = b(sys.argv[1])
+old_prefix = re.compile(re.escape(old_prefix_ne));
for e in executables_list:
perms = os.stat(e)[stat.ST_MODE]