From 868a2340757127c17420813e7f373a09cc61b5d1 Mon Sep 17 00:00:00 2001 From: Corneliu Stoicescu Date: Thu, 3 Jul 2014 20:57:10 +0300 Subject: grubtarget.py: Change 'test' GRUB entry selection method Using character combinations for to select the test image will not always work. Using the '--hotkey x' option added to the 'test' GRUB menuentry to select the 'test' GRUB entry. (From meta-yocto rev: 962003f77258bd7d1e8b3fb034c6e256c7879c8d) Signed-off-by: Corneliu Stoicescu Signed-off-by: Richard Purdie --- meta-yocto-bsp/lib/oeqa/controllers/grubtarget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-yocto-bsp/lib') diff --git a/meta-yocto-bsp/lib/oeqa/controllers/grubtarget.py b/meta-yocto-bsp/lib/oeqa/controllers/grubtarget.py index 02ada65da6..7bc807d2bc 100644 --- a/meta-yocto-bsp/lib/oeqa/controllers/grubtarget.py +++ b/meta-yocto-bsp/lib/oeqa/controllers/grubtarget.py @@ -55,7 +55,7 @@ class GrubTarget(MasterImageHardwareTarget): serialconn = pexpect.spawn(self.serialcontrol_cmd, env=self.origenv, logfile=sys.stdout) serialconn.expect("GNU GRUB version 2.00") serialconn.expect("Linux") - serialconn.sendline("OB\r") + serialconn.sendline("x") serialconn.expect("login:", timeout=120) serialconn.close() except pexpect.ExceptionPexpect as e: -- cgit v1.2.3-54-g00ecf