From a9a6e8df895d8663ce309dcc4094eed127707e01 Mon Sep 17 00:00:00 2001 From: Stefan Kalkowski Date: Wed, 3 Dec 2014 11:09:09 +0100 Subject: [PATCH] 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. --- repos/base-foc/run/env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/base-foc/run/env b/repos/base-foc/run/env index 3418e2f73..106fdd05a 100644 --- a/repos/base-foc/run/env +++ b/repos/base-foc/run/env @@ -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 }