From: Heinrich Schuchardt Date: Wed, 18 Dec 2019 10:05:59 +0000 (+0100) Subject: test/py: use valid device tree in test_fit.py X-Git-Tag: v2020.10~413^2~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=954ab3c7b78ffb5ad469fed9306298631e4f54f7;p=platform%2Fkernel%2Fu-boot.git 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 Reviewed-by: Simon Glass --- diff --git a/test/py/tests/test_fit.py b/test/py/tests/test_fit.py index 356d9a2..84b3f95 100755 --- a/test/py/tests/test_fit.py +++ b/test/py/tests/test_fit.py @@ -83,13 +83,16 @@ base_fdt = ''' /dts-v1/; / { - model = "Sandbox Verified Boot Test"; - compatible = "sandbox"; + #address-cells = <1>; + #size-cells = <0>; + + model = "Sandbox Verified Boot Test"; + compatible = "sandbox"; reset@0 { compatible = "sandbox,reset"; + reg = <0>; }; - }; '''