]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
test/py: Start sandbox SPL when enabled
authorSimon Glass <sjg@chromium.org>
Mon, 4 Jul 2016 17:58:40 +0000 (11:58 -0600)
committerSimon Glass <sjg@chromium.org>
Fri, 15 Jul 2016 02:40:24 +0000 (20:40 -0600)
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: Simon Glass <sjg@chromium.org>
test/py/u_boot_console_sandbox.py

index 04654ae8c9fee10a84944cbddcd632ce40114d72..6bf46530833b4f8cbaff6deb549903749f0121fa 100644 (file)
@@ -39,11 +39,15 @@ class ConsoleSandbox(ConsoleBase):
             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 = []
         if self.config.gdbserver:
             cmd += ['gdbserver', self.config.gdbserver]
         cmd += [
-            self.config.build_dir + '/u-boot',
+            self.config.build_dir + fname,
             '-v',
             '-d',
             self.config.build_dir + '/arch/sandbox/dts/test.dtb'