All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] test/py: use valid device tree in test_fit.py
@ 2019-12-18 10:05 Heinrich Schuchardt
  2019-12-27 16:42 ` Simon Glass
  2020-01-16 14:41 ` Tom Rini
  0 siblings, 2 replies; 3+ messages in thread
From: Heinrich Schuchardt @ 2019-12-18 10:05 UTC (permalink / raw)
  To: u-boot

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>
---
 test/py/tests/test_fit.py | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/test/py/tests/test_fit.py b/test/py/tests/test_fit.py
index 356d9a20f2..84b3f95850 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 at 0 {
 		compatible = "sandbox,reset";
+		reg = <0>;
 	};
-
 };
 '''

--
2.24.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 1/1] test/py: use valid device tree in test_fit.py
  2019-12-18 10:05 [PATCH 1/1] test/py: use valid device tree in test_fit.py Heinrich Schuchardt
@ 2019-12-27 16:42 ` Simon Glass
  2020-01-16 14:41 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Simon Glass @ 2019-12-27 16:42 UTC (permalink / raw)
  To: u-boot

On Wed, 18 Dec 2019 at 03:06, Heinrich Schuchardt <xypron.glpk@gmx.de> wrote:
>
> 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>
> ---
>  test/py/tests/test_fit.py | 9 ++++++---
>  1 file changed, 6 insertions(+), 3 deletions(-)

Reviewed-by: Simon Glass <sjg@chromium.org>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/1] test/py: use valid device tree in test_fit.py
  2019-12-18 10:05 [PATCH 1/1] test/py: use valid device tree in test_fit.py Heinrich Schuchardt
  2019-12-27 16:42 ` Simon Glass
@ 2020-01-16 14:41 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Tom Rini @ 2020-01-16 14:41 UTC (permalink / raw)
  To: u-boot

On Wed, Dec 18, 2019 at 11:05:59AM +0100, Heinrich Schuchardt wrote:

> 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>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20200116/1401fe83/attachment.sig>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-01-16 14:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-18 10:05 [PATCH 1/1] test/py: use valid device tree in test_fit.py Heinrich Schuchardt
2019-12-27 16:42 ` Simon Glass
2020-01-16 14:41 ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.