From 7ade1b8bcc53d8850ca50b0cd5f8c0f3c0e935f1 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Fri, 3 Apr 2020 18:44:10 +0100 Subject: [PATCH] platform/arm: Don't specify "Android" in the debug print. This function be used to determine the IP address of other OSs e.g. linux. --- devlib/platform/arm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devlib/platform/arm.py b/devlib/platform/arm.py index 97b0941..ba7933e 100644 --- a/devlib/platform/arm.py +++ b/devlib/platform/arm.py @@ -108,7 +108,7 @@ class VersatileExpressPlatform(Platform): init_dtr=0) as tty: tty.sendline('su') # this is, apprently, required to query network device # info by name on recent Juno builds... - self.logger.debug('Waiting for the Android shell prompt.') + self.logger.debug('Waiting for the shell prompt.') tty.expect(target.shell_prompt) self.logger.debug('Waiting for IP address...')