diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2022-02-15 21:52:09 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2022-02-15 21:52:09 +0100 |
commit | f2c902c52961e7f888a89745aff9bb7980117c19 (patch) | |
tree | a66916b05ec7f18cb2b6ba239fba51a0f52d1c5c /target/linux/patches/5.15.23/dtc-noyaml.patch | |
parent | 12b3bedeb67dbf9bbf082c91aa50ee5d004e0d41 (diff) |
linux: add 5.15.x suppport
Diffstat (limited to 'target/linux/patches/5.15.23/dtc-noyaml.patch')
-rw-r--r-- | target/linux/patches/5.15.23/dtc-noyaml.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/target/linux/patches/5.15.23/dtc-noyaml.patch b/target/linux/patches/5.15.23/dtc-noyaml.patch new file mode 100644 index 000000000..759bb01f7 --- /dev/null +++ b/target/linux/patches/5.15.23/dtc-noyaml.patch @@ -0,0 +1,16 @@ +diff -Nur linux-5.4.53.orig/scripts/dtc/dtc.c linux-5.4.53/scripts/dtc/dtc.c +--- linux-5.4.53.orig/scripts/dtc/dtc.c 2020-07-22 09:33:18.000000000 +0200 ++++ linux-5.4.53/scripts/dtc/dtc.c 2020-07-28 14:20:10.000000000 +0200 +@@ -349,12 +349,6 @@ + + if (streq(outform, "dts")) { + dt_to_source(outf, dti); +-#ifndef NO_YAML +- } else if (streq(outform, "yaml")) { +- if (!streq(inform, "dts")) +- die("YAML output format requires dts input format\n"); +- dt_to_yaml(outf, dti); +-#endif + } else if (streq(outform, "dtb")) { + dt_to_blob(outf, dti, outversion); + } else if (streq(outform, "asm")) { |