blob: f2be0b6bdff90be39eb1ee20c0c9fc522943e7e4 [file] [log] [blame]
Divin Raj5eb69482024-10-02 11:36:04 +01001#
2# Copyright (c) 2024, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7/terminal_sec_uart:/ { ports[0] = $NF }
8/terminal_ns_uart0:/ { ports[1] = $NF }
9/terminal_uart_scp:/ { ports[2] = $NF }
10END {
11 for (i = 0; i < num_uarts; i++) {
12 if (ports[i] != "")
13 print "ports[" i "]=" ports[i]
14 }
15}