README 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. U-Boot is Free Software. It is copyrighted by Wolfgang Denk and
  2. many others who contributed code (see the actual source code and the
  3. git commit messages for details). You can redistribute U-Boot and/or
  4. modify it under the terms of version 2 of the GNU General Public
  5. License as published by the Free Software Foundation. Most of it can
  6. also be distributed, at your option, under any later version of the
  7. GNU General Public License -- see individual files for exceptions.
  8. NOTE! This license does *not* cover the so-called "standalone"
  9. applications that use U-Boot services by means of the jump table
  10. provided by U-Boot exactly for this purpose - this is merely
  11. considered normal use of U-Boot, and does *not* fall under the
  12. heading of "derived work" -- see file Licenses/Exceptions for
  13. details.
  14. Also note that the GPL and the other licenses are copyrighted by
  15. the Free Software Foundation and other organizations, but the
  16. instance of code that they refer to (the U-Boot source code) is
  17. copyrighted by me and others who actually wrote it.
  18. -- Wolfgang Denk
  19. Like many other projects, U-Boot has a tradition of including big
  20. blocks of License headers in all files. This not only blows up the
  21. source code with mostly redundant information, but also makes it very
  22. difficult to generate License Clearing Reports. An additional problem
  23. is that even the same licenses are referred to by a number of
  24. slightly varying text blocks (full, abbreviated, different
  25. indentation, line wrapping and/or white space, with obsolete address
  26. information, ...) which makes automatic processing a nightmare.
  27. To make this easier, such license headers in the source files will be
  28. replaced with a single line reference to Unique License Identifiers
  29. as defined by the Linux Foundation's SPDX project [1]. For example,
  30. in a source file the full "GPL v2.0 or later" header text will be
  31. replaced by a single line:
  32. SPDX-License-Identifier: GPL-2.0+
  33. We use the SPDX Unique License Identifiers here; these are available
  34. at [2].
  35. [1] http://spdx.org/
  36. [2] http://spdx.org/licenses/
  37. Full name SPDX Identifier OSI Approved File name URI
  38. =======================================================================================================================================
  39. GNU General Public License v2.0 only GPL-2.0 Y gpl-2.0.txt http://www.gnu.org/licenses/gpl-2.0.txt
  40. GNU General Public License v2.0 or later GPL-2.0+ Y gpl-2.0.txt http://www.gnu.org/licenses/gpl-2.0.txt
  41. GNU Library General Public License v2 or later LGPL-2.0+ Y lgpl-2.0.txt http://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt
  42. GNU Lesser General Public License v2.1 or later LGPL-2.1+ Y lgpl-2.1.txt http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt
  43. eCos license version 2.0 eCos-2.0 eCos-2.0.txt http://www.gnu.org/licenses/ecos-license.html
  44. BSD 2-Clause License BSD-2-Clause Y bsd-2-clause.txt https://spdx.org/licenses/BSD-2-Clause