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

image: Fix FIT and vboot tests to exit sandbox correctly


When used with a device tree, sandbox now requires a 'reset' controller. Add
this to the device trees so that reset works and the tests can complete.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Fixes: 5010d98f (sandbox: Use the reset driver to handle reset)
parent 2e33e761
No related branches found
No related tags found
No related merge requests found
...@@ -108,6 +108,10 @@ base_fdt = ''' ...@@ -108,6 +108,10 @@ base_fdt = '''
model = "Sandbox Verified Boot Test"; model = "Sandbox Verified Boot Test";
compatible = "sandbox"; compatible = "sandbox";
reset@0 {
compatible = "sandbox,reset";
};
}; };
''' '''
......
...@@ -4,4 +4,7 @@ ...@@ -4,4 +4,7 @@
model = "Sandbox Verified Boot Test"; model = "Sandbox Verified Boot Test";
compatible = "sandbox"; compatible = "sandbox";
reset@0 {
compatible = "sandbox,reset";
};
}; };
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