From f4967cfb85500e0a2736ce2ab7678271390ef715 Mon Sep 17 00:00:00 2001 From: Dolu1990 Date: Sun, 26 Dec 2021 12:17:33 +0100 Subject: [PATCH] tools/litex_json2dts_linux.py fix double {{ A string with a {{ was missing the .format call, generating some broken dts --- litex/tools/litex_json2dts_linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/tools/litex_json2dts_linux.py b/litex/tools/litex_json2dts_linux.py index 8cf03fc2e..1d21e32c4 100755 --- a/litex/tools/litex_json2dts_linux.py +++ b/litex/tools/litex_json2dts_linux.py @@ -238,7 +238,7 @@ def generate_dts(d, initrd_start=None, initrd_size=None, initrd=None, root_devic compatible = "simple-bus"; interrupt-parent = <&intc0>; ranges; -""" +""".format() # SoC Controller -------------------------------------------------------------------------------