feature-removal-schedule.txt 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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: "autoscr" command
  9. When: August 2009
  10. Why: "autosrc" is an ugly and completely non-standard name. The "autoscr"
  11. command is deprecated and will be replaced the "source" command as
  12. used by other shells such as bash. Both commands will be supported
  13. for a transition period of 6 months after which "autoscr" will be
  14. removed.
  15. Who: Peter Tyser <ptyser@xes-inc.com>
  16. ---------------------------
  17. What: GPL cleanup
  18. When: August 2009
  19. Why: Over time, a couple of files have sneaked in into the U-Boot
  20. source code that are either missing a valid GPL license
  21. header or that carry a license that is incompatible with the
  22. GPL.
  23. Such files shall be removed from the U-Boot source tree.
  24. See http://www.denx.de/wiki/pub/U-Boot/TaskGplCleanup/u-boot-1.1.2-files
  25. for an old and probably incomplete list of such files.
  26. Who: Wolfgang Denk <wd@denx.de> and board maintainers
  27. ---------------------------
  28. What: Individual I2C commands
  29. When: April 2009
  30. Why: Per the U-Boot README, individual I2C commands such as "imd", "imm",
  31. "imw", etc are deprecated. The single "i2c" command which is
  32. currently enabled via CONFIG_I2C_CMD_TREE contains the same
  33. functionality as the individual I2C commands. The individual
  34. I2C commands should be removed as well as any references to
  35. CONFIG_I2C_CMD_TREE.
  36. Who: Peter Tyser <ptyser@xes-inc.com>
  37. ---------------------------
  38. What: Legacy NAND code
  39. When: April 2009
  40. Why: Legacy NAND code is deprecated. Similar functionality exists in
  41. more recent NAND code ported from the Linux kernel.
  42. Who: Scott Wood <scottwood@freescale.com>