From 82ecfe97ace23260f2ac823b88cd07eff85edac3 Mon Sep 17 00:00:00 2001 From: Vishnu Banavath Date: Fri, 14 Oct 2022 16:08:21 +0100 Subject: [PATCH] gitlab/ci: Add support for optee logs This change is to trace optee logs on uart3 in LAVA farm. Signed-off-by: Vishnu Banavath --- .gitlab/ci/lava-test.yml | 8 ++++++++ .gitlab/lava/n1sdp/ptest.yml.j2 | 5 +++++ 2 files changed, 13 insertions(+) diff --git a/.gitlab/ci/lava-test.yml b/.gitlab/ci/lava-test.yml index 0e82567..5a6f60f 100644 --- a/.gitlab/ci/lava-test.yml +++ b/.gitlab/ci/lava-test.yml @@ -28,6 +28,14 @@ current_value=" FALSE" new_value=" TRUE" sed -i "s/$config$current_value/$config$new_value/" config.txt + config="MCPUART:" + current_value=" 1" + new_value=" 0" + sed -i "s/$config$current_value/$config$new_value/" config.txt + config="FPGAUART2:" + current_value=" 0" + new_value=" 1" + sed -i "s/$config$current_value/$config$new_value/" config.txt zip -r ../cassini-firmware.zip * ;; *) diff --git a/.gitlab/lava/n1sdp/ptest.yml.j2 b/.gitlab/lava/n1sdp/ptest.yml.j2 index c82c6a9..066f668 100644 --- a/.gitlab/lava/n1sdp/ptest.yml.j2 +++ b/.gitlab/lava/n1sdp/ptest.yml.j2 @@ -78,6 +78,11 @@ actions: method: new_connection connection: uart1 +- boot: + namespace: uart3 + method: new_connection + connection: uart3 + - boot: namespace: debian connection-namespace: uart1 -- GitLab