From 3d5a16433828a2a2fad0a1697c7536e22913e9f5 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Wed, 24 Jun 2020 17:07:47 +0100 Subject: [PATCH] module/vexpress: Remove reference to android. This method is also called when booting linux so remove specific reference to Android. --- devlib/module/vexpress.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/devlib/module/vexpress.py b/devlib/module/vexpress.py index 6289d26..05e4146 100644 --- a/devlib/module/vexpress.py +++ b/devlib/module/vexpress.py @@ -130,7 +130,7 @@ class VexpressBootModule(BootModule): init_dtr=0) as tty: self.get_through_early_boot(tty) self.perform_boot_sequence(tty) - self.wait_for_android_prompt(tty) + self.wait_for_shell_prompt(tty) def perform_boot_sequence(self, tty): raise NotImplementedError() @@ -159,8 +159,8 @@ class VexpressBootModule(BootModule): menu.wait(timeout=self.timeout) return menu - def wait_for_android_prompt(self, tty): - self.logger.debug('Waiting for the Android prompt.') + def wait_for_shell_prompt(self, tty): + self.logger.debug('Waiting for the shell prompt.') tty.expect(self.target.shell_prompt, timeout=self.timeout) # This delay is needed to allow the platform some time to finish # initilizing; querying the ip address too early from connect() may