Skip to content
Snippets Groups Projects
Commit 89eaa923 authored by Satyajit Desai's avatar Satyajit Desai
Browse files

ldrp-v2: Change to handle descrepancy between tools usage

This change will handle the naming convention difference across
various tools. This is a temporary change till we move to a
consistent naming convention across the different tools.

Change-Id: I4279647a0f4eb08d2943106afabd3c1bcf06f749
parent 86d67625
No related branches found
No related tags found
No related merge requests found
......@@ -335,9 +335,13 @@ class DebugImage_v2():
qtf_dir = os.path.join(out_dir, 'qtf')
workspace = os.path.join(qtf_dir, 'qtf.workspace')
qtf_out = os.path.join(out_dir, 'qtf.txt')
chipset = 'msm' + str(ram_dump.hw_id)
chipset = 'msm' + ram_dump.hw_id
hlos = 'LA'
#Temp change to handle descripancy between tools usage
if chipset == 'msmcobalt':
chipset = 'msm8998'
# Resolve any port collisions with other running qtf_server instances
for tries in range(max_tries):
port = random.randint(12000, 13000)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment