blob: 1f0565db0bcd1778b98dd7c4c7eeb5fe4f240f78 [file] [log] [blame]
Leonardo Sandoval6eff3f72021-05-03 11:12:37 -05001#
2# Copyright (c) 2021 Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6# Expect script for Trusted Firmware + Linux boot process
7#
8
9# Trusted Firmware boot section
10source $ci_root/lava-expect/trusted-firmware.inc
11
12# Linux kernel boot section
13expect_string+=('Booting Linux on physical CPU')
14expect_string+=('Linux version')
15
16# The kernel prints some information it takes from the preloaded DTB.
17# Check for following information to see that we actually got the right DTB.
18# 1. Machine model
19# 2. Command line passed via the "/chosen" node
20expect_string+=('Machine model: FVP (Base|Foundation)')
21expect_string+=('Kernel command line: console=ttyAMA0')