blob: 34117a4506df2545542e04c186a824a5e4acc9ff [file] [log] [blame]
#
# Copyright (c) 2021-2022 Arm Limited. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
# Expect script for booting Yocto linux on FVP-R
#
source [file join [file dirname [info script]] handle-arguments.inc]
# FVP-R BL1
expect {
"Booting Trusted Firmware" {
message "Booting Trusted Firmware"
}
}
expect {
"BL1: Booting BL33" {
message "Booting BL33"
}
}
# Uboot
expect {
"U-Boot" {
message "Entered Uboot"
}
}
# Yocto
expect {
"Booting Linux on physical CPU" {
message "Booting Linux"
}
}
expect {
"fvp-baser-aemv8r64 login:" {
message "Yocto Login Prompt Received"
send "root\n"
}
}
expect {
"#" {
message "Successfully Reached Yocto Shell"
}
}