feature-removal-schedule.txt 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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_NET_MULTI option
  9. When: Release 2009-11
  10. Why: U-boot currently implements two network driver APIs. New drivers with
  11. the older-style implementation have not been accepted for a while, and
  12. this parallel system makes the code confusing and hard to augment.
  13. All existing in-tree boards will be converted to use CONFIG_NET_MULTI
  14. over the span of two releases (2009-07 and 2009-09).
  15. In the 2009-11 release, all code that is compiled when CONFIG_NET_MULTI
  16. is not set will be removed, and all references to CONFIG_NET_MULTI
  17. will be removed, effectively making it the only API. This should
  18. provide ample time for out-of-tree users to adjust, and for tools on
  19. all architectures to be made to work with weak functions.
  20. Who: Ben Warren <biggerbadderben@gmail.com>
  21. ---------------------------
  22. What: "autoscr" command
  23. When: Release 2009-09
  24. Why: "autosrc" is an ugly and completely non-standard name.
  25. The "autoscr" command is deprecated and will be replaced by
  26. the "source" command as used by other shells such as bash.
  27. Starting with March 2009, both commands will be supported for
  28. a transition period of 6 months after which "autoscr" will be
  29. removed. During the transition period existing scripts and
  30. environment variable names remain untouched for maximum
  31. compatibiltiy; thse will be changed when support for the
  32. "autoscr" command get's finally dropped.
  33. Who: Peter Tyser <ptyser@xes-inc.com>
  34. ---------------------------
  35. What: GPL cleanup
  36. When: August 2009
  37. Why: Over time, a couple of files have sneaked in into the U-Boot
  38. source code that are either missing a valid GPL license
  39. header or that carry a license that is incompatible with the
  40. GPL.
  41. Such files shall be removed from the U-Boot source tree.
  42. See http://www.denx.de/wiki/pub/U-Boot/TaskGplCleanup/u-boot-1.1.2-files
  43. for an old and probably incomplete list of such files.
  44. Who: Wolfgang Denk <wd@denx.de> and board maintainers
  45. ---------------------------
  46. What: Individual I2C commands
  47. When: April 2009
  48. Why: Per the U-Boot README, individual I2C commands such as "imd", "imm",
  49. "imw", etc are deprecated. The single "i2c" command which is
  50. currently enabled via CONFIG_I2C_CMD_TREE contains the same
  51. functionality as the individual I2C commands. The individual
  52. I2C commands should be removed as well as any references to
  53. CONFIG_I2C_CMD_TREE.
  54. Who: Peter Tyser <ptyser@xes-inc.com>
  55. ---------------------------
  56. What: Legacy NAND code
  57. When: April 2009
  58. Why: Legacy NAND code is deprecated. Similar functionality exists in
  59. more recent NAND code ported from the Linux kernel.
  60. Who: Scott Wood <scottwood@freescale.com>