foc: relax parsing of boot process termination

Until now, the successful termination of the boot process was recognized
when 'expect' saw the first L4 bootstrapper output on serial line. On sytems
with initially shaky serial connection like Versatile Express, where the serial
line baudrate changes with the bootstrapper initialization, the first expected
line might be missing. Therefore, change the expected line to the first
Fiasco.OC kernel output.
This commit is contained in:
Stefan Kalkowski 2014-12-03 11:09:09 +01:00 committed by Christian Helmuth
parent 726c32e5f6
commit a9a6e8df89
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,7 @@ proc run_genode_until {{wait_for_re forever} {timeout_value 0} {running_spawn_id
return
}
if {[is_serial_available]} {
spawn_serial $wait_for_re $timeout_value "L4 Bootstrapper"
spawn_serial $wait_for_re $timeout_value "Welcome to Fiasco.OC"
return
}