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 /common | |
| 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 'common')
| -rw-r--r-- | common/board_r.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/common/board_r.c b/common/board_r.c index 143d51d0633..76f9fc090fb 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -572,13 +572,6 @@ static int dm_announce(void) printf("Warning: Unexpected devicetree source (not from a prior stage)"); printf("Warning: U-Boot may not function properly\n"); } - if (IS_ENABLED(CONFIG_OF_TAG_MIGRATE) && - (gd->flags & GD_FLG_OF_TAG_MIGRATE)) - /* - * U-Boot will silently fail to work after 2023.07 if - * there are old tags present - */ - printf("Warning: Device tree includes old 'u-boot,dm-' tags: please fix by 2023.07!\n"); } return 0; |
