# | |
# 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" | |
} | |
} | |
# Linux kernel boot section | |
source [file join [file dirname [info script]] linux.inc] | |
# Yocto | |
expect { | |
"fvp-baser-aemv8r64 login:" { | |
message "Yocto Login Prompt Received" | |
} | |
} |