Skip to content
Snippets Groups Projects
Commit a811779b authored by Simon Glass's avatar Simon Glass
Browse files

test/py: Start sandbox SPL when enabled


When sandbox SPL is enabled we want to start that rather than U-Boot proper,
since some tests may rely on running it first.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent ebec58fb
No related branches found
No related tags found
No related merge requests found
...@@ -39,11 +39,15 @@ class ConsoleSandbox(ConsoleBase): ...@@ -39,11 +39,15 @@ class ConsoleSandbox(ConsoleBase):
A u_boot_spawn.Spawn object that is attached to U-Boot. A u_boot_spawn.Spawn object that is attached to U-Boot.
""" """
bcfg = self.config.buildconfig
config_spl = bcfg.get('config_spl', 'n') == 'y'
fname = '/spl/u-boot-spl' if config_spl else '/u-boot'
print fname
cmd = [] cmd = []
if self.config.gdbserver: if self.config.gdbserver:
cmd += ['gdbserver', self.config.gdbserver] cmd += ['gdbserver', self.config.gdbserver]
cmd += [ cmd += [
self.config.build_dir + '/u-boot', self.config.build_dir + fname,
'-v', '-v',
'-d', '-d',
self.config.build_dir + '/arch/sandbox/dts/test.dtb' self.config.build_dir + '/arch/sandbox/dts/test.dtb'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment