diff options
| author | Tom Rini <[email protected]> | 2025-11-02 14:08:12 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-11-10 11:30:56 -0600 |
| commit | 6d04828b45202312c93892b4be834809c795d4d2 (patch) | |
| tree | f4438b2287c85b2479109ff4ecdff1f80ec53000 /tools/key2dtsi.py | |
| parent | d3b691c9d32260a262382f464bae62ad16d82225 (diff) | |
dm: Remove pre-schema tag support
Support for using "u-boot,dm-..." rather than "bootph-..." has been
deprecated since February 2023. Any platforms using this have had a
console message saying to migrate by 2023.07. Go and remove all support
here now, for the v2026.01 release.
The results of this change that aren't clear from the above are that we
still have a checkpatch.pl error message, and document in
doc/develop/spl.rst that they have been migrated since 2023. We also
change the key2dtsi.py tool to use the correct bootph phase rather than
the legacy phase.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'tools/key2dtsi.py')
| -rwxr-xr-x | tools/key2dtsi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/key2dtsi.py b/tools/key2dtsi.py index 320ea930a97..66facc02d87 100755 --- a/tools/key2dtsi.py +++ b/tools/key2dtsi.py @@ -59,7 +59,7 @@ if args.required_conf: elif args.required_image: out.write('\t\t\trequired = "image";\n') if args.spl: - out.write('\t\t\tu-boot,dm-spl;\n') + out.write('\t\t\tbootph-pre-ram;\n') out.write('\t\t};\n') out.write('\t};\n') out.write('};\n') |
