blob: dc6aebd7c7817acc8720d1d34f3c0116c672aa20 [file] [log] [blame]
#
# Copyright (c) 2020, Arm Limited. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
source [file join [file dirname [info script]] handle-arguments.inc]
expect {
"Please press Enter to activate this console." {
puts "<<Linux PVM booted>>"
send "\r"
}
timeout {
exit_uart -1
}
}
expect {
"/ # " {
send "insmod hafnium.ko\n"
}
timeout {
exit_uart -1
}
}
expect {
"Hafnium successfully loaded with 1 VMs:" {
puts "<<Hafnium driver started>>"
}
timeout {
exit_uart -1
}
}
exit_uart 0