X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=test%2Fpy%2Fu_boot_console_sandbox.py;h=bbf41e788ba3300b4345f9a6163f7bce0ae69f4c;hb=77bcb22d77d1b1975c166755b012e0c0c1abb50a;hp=267f8b06508b9365f3c5c325bef64d82780ae2f4;hpb=78b39cc3e19e698c04c2417ed5f79e324c90595e;p=u-boot diff --git a/test/py/u_boot_console_sandbox.py b/test/py/u_boot_console_sandbox.py index 267f8b0650..bbf41e788b 100644 --- a/test/py/u_boot_console_sandbox.py +++ b/test/py/u_boot_console_sandbox.py @@ -39,7 +39,12 @@ class ConsoleSandbox(ConsoleBase): A u_boot_spawn.Spawn object that is attached to U-Boot. """ - return Spawn([self.config.build_dir + '/u-boot']) + cmd = [ + self.config.build_dir + '/u-boot', + '-d', + self.config.build_dir + '/arch/sandbox/dts/test.dtb' + ] + return Spawn(cmd) def kill(self, sig): """Send a specific Unix signal to the sandbox process.