Skip to content
Snippets Groups Projects
Commit 597341a8 authored by Soumen Ghosh's avatar Soumen Ghosh
Browse files

lrdpv2: chipset value is fixed for parsing qtf of napali target

        Pass the proper chipset id, earlier it was passing msmsdm845 to qtf to parse qtf logs.

Change-Id: I9472a4ac09a9adf2a7bf0d7aa96aac9a5b986b8c
parent ad74c260
No related branches found
No related tags found
No related merge requests found
......@@ -424,7 +424,9 @@ 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' + ram_dump.hw_id
chipset = ram_dump.hw_id
if "sdm" not in ram_dump.hw_id.lower():
chipset = "msm" + ram_dump.hw_id
hlos = 'LA'
#Temp change to handle descripancy between tools usage
......
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