feature-removal-schedule.txt 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. The following is a list of files and features that are going to be
  2. removed from the U-Boot source tree. Every entry should contain what
  3. exactly is going away, when it will be gone, why it is being removed,
  4. and who is going to be doing the work. When the feature is removed
  5. from U-Boot, its corresponding entry should also be removed from this
  6. file.
  7. ---------------------------
  8. What: CONFIG_SYS_ARM_WITHOUT_RELOC option
  9. When: After Release 2011.03
  10. Why: The implementation of U-Boot for the ARM architecture has
  11. been reworked to support relocation. This allows to
  12. efficiently use the same U-Boot binary image on systems with
  13. different RAM sizes, and brings the implementation much more
  14. in line with the code used for example on Power Architecture
  15. systems (eventually allowing to merge into common code). This
  16. seems especailly interesting now that ARM is getting Device
  17. Tree support as well.
  18. All ARM boards need to be adapted to this new code, which
  19. requires testing on the actual hardware, so this is a task
  20. for the respective board maintainers or other users.
  21. Please see the commit message of commit f1d2b31 for details:
  22. http://git.denx.de/?p=u-boot.git;a=commit;h=f1d2b31
  23. Support for CONFIG_SYS_ARM_WITHOUT_RELOC will be removed
  24. after release v2011.03; all boards that have not been
  25. converted by then, i. e. that are still broken then, are
  26. considered unmaintained and without interest for the
  27. community and will be removed as well.
  28. ---------------------------
  29. What: CONFIG_NET_MULTI option
  30. When: Release 2009-11
  31. Why: U-boot currently implements two network driver APIs. New drivers with
  32. the older-style implementation have not been accepted for a while, and
  33. this parallel system makes the code confusing and hard to augment.
  34. All existing in-tree boards will be converted to use CONFIG_NET_MULTI
  35. over the span of two releases (2009-07 and 2009-09).
  36. In the 2009-11 release, all code that is compiled when CONFIG_NET_MULTI
  37. is not set will be removed, and all references to CONFIG_NET_MULTI
  38. will be removed, effectively making it the only API. This should
  39. provide ample time for out-of-tree users to adjust, and for tools on
  40. all architectures to be made to work with weak functions.
  41. Who: Ben Warren <biggerbadderben@gmail.com>
  42. ---------------------------
  43. What: GPL cleanup
  44. When: August 2009
  45. Why: Over time, a couple of files have sneaked in into the U-Boot
  46. source code that are either missing a valid GPL license
  47. header or that carry a license that is incompatible with the
  48. GPL.
  49. Such files shall be removed from the U-Boot source tree.
  50. See http://www.denx.de/wiki/pub/U-Boot/TaskGplCleanup/u-boot-1.1.2-files
  51. for an old and probably incomplete list of such files.
  52. Who: Wolfgang Denk <wd@denx.de> and board maintainers