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 /scripts/Makefile.lib | |
| 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 'scripts/Makefile.lib')
| -rw-r--r-- | scripts/Makefile.lib | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 5db2fbc418a..791eb1cb327 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -671,15 +671,6 @@ cmd_mkimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) -d $< $@ \ # pass removes various unused properties from the remaining nodes. # The output is typically a much smaller device tree file. -ifdef CONFIG_OF_TAG_MIGRATE -# Support the old tags for a migration period -migrate_tpl := -b u-boot,dm-pre-reloc -b u-boot,dm-tpl -migrate_vpl := -b u-boot,dm-pre-reloc -b u-boot,dm-vpl -migrate_spl := -b u-boot,dm-pre-reloc -b u-boot,dm-spl -migrate_all := -P u-boot,dm-pre-reloc \ - -P u-boot,dm-spl -P u-boot,dm-tpl -P u-boot,dm-vpl -endif - ifeq ($(CONFIG_VPL_BUILD),y) fdtgrep_props := -b bootph-all -b bootph-verify $(migrate_vpl) else |
