Skip to content

Commit f435471

Browse files
authored
Merge branch 'qualcomm-linux:main' into main
2 parents 36006fe + cce5324 commit f435471

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

data/metadata.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@
1717
"dtbs/qcom/qcs8300-ride.dtb": "",
1818
"dtbs/qcom/sm8750-mtp.dtb": "",
1919
"dtbs/qcom/lemans-evk.dtb": "",
20+
"dtbs/qcom/monaco-evk.dtb": "",
2021
"dtbs/qcom/qcs615-ride.dtb": "",
21-
"dtbs/qcom/kaanapali-qrd.dtb": "",
22+
"dtbs/qcom/kaanapali-mtp.dtb": "",
2223
"dtbs/qcom/x1e80100-crd.dtb": ""
2324
}
2425
}

lava_Job_definition_generator.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,12 @@
3737
'boot_method': boot_method,
3838
'name': name
3939
}
40-
# Example test method
41-
test_method = 'baseline'
40+
# Example test method,
41+
# → picks the value from the environment if it exists
42+
# → otherwise defaults to "baseline"
43+
test_method = os.environ.get("TEST_METHOD", "baseline")
44+
print("Using test method:", test_method)
45+
4246
testList_path = 'testList.json'
4347
test_names = None
4448
test_details_json_path = testList_path if os.path.exists(testList_path) else None

templates/overlays/generic.jinja2

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{% extends boot_template %}
2+
3+
{%- block testoverlays -%}
4+
modules:
5+
compression: xz
6+
url: '{{ node.artifacts.modules }}'
7+
format: tar
8+
path : /
9+
{%- endblock -%}

0 commit comments

Comments
 (0)