diff options
-rw-r--r-- | test/py/u_boot_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/u_boot_utils.py b/test/py/u_boot_utils.py index 6a6b2ec0e66..e4765e38c14 100644 --- a/test/py/u_boot_utils.py +++ b/test/py/u_boot_utils.py @@ -201,7 +201,7 @@ def find_ram_base(u_boot_console): with u_boot_console.log.section('find_ram_base'): response = u_boot_console.run_command('bdinfo') for l in response.split('\n'): - if '-> start' in l: + if '-> start' in l or 'memstart =' in l: ram_base = int(l.split('=')[1].strip(), 16) break if ram_base is None: |