mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-26 16:41:42 +00:00
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: Simon Glass <sjg@chromium.org>
Fixes: 5010d98f
(sandbox: Use the reset driver to handle reset)
This commit is contained in:
parent
2e33e76165
commit
0edd82e244
2 changed files with 7 additions and 0 deletions
|
@ -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 @@
|
||||||
model = "Sandbox Verified Boot Test";
|
model = "Sandbox Verified Boot Test";
|
||||||
compatible = "sandbox";
|
compatible = "sandbox";
|
||||||
|
|
||||||
|
reset@0 {
|
||||||
|
compatible = "sandbox,reset";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue