mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 22:51:37 +00:00
test/py: use valid device tree in test_fit.py
The device tree compiler expects that a node with a unit-address has a reg property. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
327bb3bc1e
commit
954ab3c7b7
1 changed files with 6 additions and 3 deletions
|
@ -83,13 +83,16 @@ base_fdt = '''
|
||||||
/dts-v1/;
|
/dts-v1/;
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
|
||||||
model = "Sandbox Verified Boot Test";
|
model = "Sandbox Verified Boot Test";
|
||||||
compatible = "sandbox";
|
compatible = "sandbox";
|
||||||
|
|
||||||
reset@0 {
|
reset@0 {
|
||||||
compatible = "sandbox,reset";
|
compatible = "sandbox,reset";
|
||||||
|
reg = <0>;
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue