COPYING 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. COPYING -- Describes the terms under which Nuttx is distributed. A
  2. copy of the BSD-style licensing is included in this file. In my
  3. words -- I believe that you should free to use NuttX in any
  4. environment, private, private, commercial, open, closed, etc.
  5. provided only that you repect the modest copyright notices as
  6. described in license (below). Please feel free to contact me if you
  7. have any licensing concerns.
  8. NuttX
  9. ^^^^^^
  10. License for NuttX in general (authorship of individual files may vary):
  11. /*************************************************************************
  12. *
  13. * Copyright (C) 2007-2012 Gregory Nutt. All rights reserved.
  14. * Author: Gregory Nutt <gnutt@nuttx.org>
  15. *
  16. * Redistribution and use in source and binary forms, with or without
  17. * modification, are permitted provided that the following conditions
  18. * are met:
  19. *
  20. * 1. Redistributions of source code must retain the above copyright
  21. * notice, this list of conditions and the following disclaimer.
  22. * 2. Redistributions in binary form must reproduce the above copyright
  23. * notice, this list of conditions and the following disclaimer in
  24. * the documentation and/or other materials provided with the
  25. * distribution.
  26. * 3. Neither the name NuttX nor the names of its contributors may be
  27. * used to endorse or promote products derived from this software
  28. * without specific prior written permission.
  29. *
  30. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  31. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  32. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  33. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  34. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  35. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  36. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  37. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  38. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  39. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  40. * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  41. * POSSIBILITY OF SUCH DAMAGE.
  42. *
  43. *************************************************************************/
  44. FAT Long File Names
  45. ^^^^^^^^^^^^^^^^^^^
  46. NOTE: If CONFIG_FAT_LFN is defined in your NuttX configuration file, then
  47. there may be some legal, patent issues. The following was extracted from
  48. the entry "File Allocation Table from Wikipedia, the free encyclopedia:
  49. "On December 3, 2003 Microsoft announced it would be offering licenses
  50. for use of its FAT specification and 'associated intellectual property',
  51. at the cost of a US$0.25 royalty per unit sold, with a $250,000 maximum
  52. royalty per license agreement.
  53. o "U.S. Patent 5,745,902 (http://www.google.com/patents?vid=5745902) -
  54. Method and system for accessing a file using file names having
  55. different file name formats. ...
  56. o "U.S. Patent 5,579,517 (http://www.google.com/patents?vid=5579517) -
  57. Common name space for long and short filenames. ...
  58. o "U.S. Patent 5,758,352 (http://www.google.com/patents?vid=5758352) -
  59. Common name space for long and short filenames. ...
  60. o "U.S. Patent 6,286,013 (http://www.google.com/patents?vid=6286013) -
  61. Method and system for providing a common name space for long and
  62. short file names in an operating system. ...
  63. "Many technical commentators have concluded that these patents only cover
  64. FAT implementations that include support for long filenames, and that
  65. removable solid state media and consumer devices only using short names
  66. would be unaffected. ..."
  67. This Wikipedia entry has been updated with recent legal decisions in favor
  68. of Microsoft. Refer to:
  69. http://en.wikipedia.org/wiki/File_Allocation_Table#Legal_issues
  70. So you have been forewarned: Use the long filename at your own risk!
  71. uIP
  72. ^^^
  73. Many lower-level networking components of NuttX derive from uIP which
  74. has a similar BSD style license:
  75. Copyright (c) 2001-2003, Adam Dunkels.
  76. All rights reserved.
  77. IGMP
  78. ^^^^
  79. IGMP support, if enabled in uIP, adds additional logic by Steve Reynolds:
  80. Copyright (c) 2002 CITEL Technologies Ltd.
  81. All rights reserved.
  82. The HID Parser in drivers/usbhost
  83. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  84. Adapted from the LUFA Library (MIT license):
  85. Copyright 2011 Dean Camera (dean [at] fourwalledcubicle [dot] com)
  86. dean [at] fourwalledcubicle [dot] com, www.lufa-lib.org
  87. Permission to use, copy, modify, distribute, and sell this
  88. software and its documentation for any purpose is hereby granted
  89. without fee, provided that the above copyright notice appear in
  90. all copies and that both that the copyright notice and this
  91. permission notice and warranty disclaimer appear in supporting
  92. documentation, and that the name of the author not be used in
  93. advertising or publicity pertaining to distribution of the
  94. software without specific, written prior permission.
  95. The author disclaim all warranties with regard to this
  96. software, including all implied warranties of merchantability
  97. and fitness. In no event shall the author be liable for any
  98. special, indirect or consequential damages or any damages
  99. whatsoever resulting from loss of use, data or profits, whether
  100. in an action of contract, negligence or other tortious action,
  101. arising out of or in connection with the use or performance of
  102. this software.
  103. Certain functions in the NuttX C-library derive from other BSD-compatible
  104. sources:
  105. fs/nfs:
  106. ^^^^^^^
  107. NFS:
  108. Copyright (c) 1989, 1991, 1993, 1995 The Regents of the University of
  109. California. All rights reserved.
  110. and RPC also has:
  111. Copyright (c) 2004 The Regents of the University of Michigan.
  112. Copyright (c) 2004 Weston Andros Adamson <muzzle@umich.edu>.
  113. Copyright (c) 2004 Marius Aamodt Eriksen <marius@umich.edu>.
  114. The University of Michigan uses a modified BSD license equivalent to
  115. the NuttX license. The University of California code uses the original
  116. BSD license and requires that I state the following:
  117. "This product includes software developed by the University of
  118. California, Berkeley and its contributors."
  119. strtod():
  120. ^^^^^^^^
  121. Copyright (C) 2002 Michael Ringgaard. All rights reserved.
  122. Copyright (C) 2006-2007 H. Peter Anvin.
  123. dtoa():
  124. ^^^^^^
  125. If you enable floating point conversions with CONFIG_LIBC_FLOATINGPOINT,
  126. then some files with an unmodified BSD license will be included. That
  127. license is similar to the above (modified) BSD license, but has an
  128. additional requirement that I state the following:
  129. "This product includes software developed by the University of
  130. California, Berkeley and its contributors."
  131. libc/string/lib_vikmemcpy.c
  132. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  133. If you enable CONFIG_MEMCPY_VIK, then you will build with the optimized
  134. version of memcpy from Daniel Vik. Licensing information for that version
  135. of memcpy() follows:
  136. Copyright (C) 1999-2010 Daniel Vik
  137. This software is provided 'as-is', without any express or implied
  138. warranty. In no event will the authors be held liable for any
  139. damages arising from the use of this software.
  140. Permission is granted to anyone to use this software for any
  141. purpose, including commercial applications, and to alter it and
  142. redistribute it freely, subject to the following restrictions:
  143. 1. The origin of this software must not be misrepresented; you
  144. must not claim that you wrote the original software. If you
  145. use this software in a product, an acknowledgment in the
  146. use this software in a product, an acknowledgment in the
  147. product documentation would be appreciated but is not
  148. required.
  149. 2. Altered source versions must be plainly marked as such, and
  150. must not be misrepresented as being the original software.
  151. 3. This notice may not be removed or altered from any source
  152. distribution.
  153. libc/math
  154. ^^^^^^^^^
  155. If you enable CONFIG_LIB, you will build the math library at libc/math.
  156. This library was taken from the math library developed for the Rhombus
  157. OS by Nick Johnson (https://github.com/nickbjohnson4224/rhombus). This
  158. port was contributed by Darcy Gong. The Rhombus math library has this
  159. compatible MIT license:
  160. Copyright (C) 2009-2011 Nick Johnson <nickbjohnson4224 at gmail.com>
  161. Permission to use, copy, modify, and distribute this software for any
  162. purpose with or without fee is hereby granted, provided that the above
  163. copyright notice and this permission notice appear in all copies.
  164. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  165. WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  166. MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  167. ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  168. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  169. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  170. Documents/rss.gif
  171. ^^^^^^^^^^^^^^^^^
  172. Licensed under Creative Commons Attribution-Share Alike 2.5 Generic
  173. license:
  174. You are free:
  175. * to share – to copy, distribute and transmit the work
  176. * to remix – to adapt the work
  177. Under the following conditions:
  178. * attribution – You must attribute the work in the manner specified
  179. by the author or licensor (but not in any way that suggests that
  180. they endorse you or your use of the work).
  181. * share alike – If you alter, transform, or build upon this work,
  182. you may distribute the resulting work only under the same or
  183. similar license to this one.