2008-07-29 11:08:54 +00:00
|
|
|
The Lua part of eLua is licensed under the Lua licensing terms, which you can
|
|
|
|
find at http://www.lua.org/license.html.
|
2008-08-09 11:03:35 +00:00
|
|
|
|
2009-02-13 20:02:13 +00:00
|
|
|
The XMODEM code is adapted from the FreeBSD at91 library, which was written by
|
|
|
|
M. Warner Losh, and is released under the BSD license.
|
2008-08-09 11:03:35 +00:00
|
|
|
|
2008-09-02 10:55:35 +00:00
|
|
|
The "pack" module is adapted from the "lpack" module by Luiz Henrique de
|
|
|
|
Figueiredo and it's placed in the public domain.
|
|
|
|
|
|
|
|
The "bit" module is adapted from the "bitlib" library by Reuben Thomas which
|
|
|
|
is distributed under a MIT license.
|
|
|
|
|
2008-09-10 18:52:26 +00:00
|
|
|
The "integer only lua" is based on the "Go Long Lua!" patch by John D.
|
2009-10-13 02:14:27 +00:00
|
|
|
Ramsdell (from the Lua Power Patches page) and is placed in the public
|
|
|
|
domain.
|
2008-09-10 18:52:26 +00:00
|
|
|
|
2008-09-02 10:55:35 +00:00
|
|
|
The multiple memory allocator (dlmalloc) is written by Doug Lea and it's
|
|
|
|
placed on the public domain.
|
|
|
|
|
2008-10-31 21:32:15 +00:00
|
|
|
uIP (the TCP/IP stack used by eLua) is written by Adam Dunkels and released
|
|
|
|
under a BSD license. The eLua version is slightly modified.
|
|
|
|
|
2009-10-13 02:14:27 +00:00
|
|
|
Manufacturer provided CPU support libraries are licensed under their own
|
|
|
|
terms, check src/platform/<platform> for details.
|
2008-07-29 11:08:54 +00:00
|
|
|
|
2009-10-13 02:14:27 +00:00
|
|
|
The rest of the code is licensed under MIT, listed below.
|
2008-07-29 11:08:54 +00:00
|
|
|
|
2009-10-13 02:14:27 +00:00
|
|
|
================================================================================
|
|
|
|
The MIT License
|
2008-07-29 11:08:54 +00:00
|
|
|
|
2009-10-13 02:14:27 +00:00
|
|
|
Copyright (c) 2009 Dado Sutter and Bogdan Marinescu
|
2008-07-29 11:08:54 +00:00
|
|
|
|
2009-10-13 02:14:27 +00:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to
|
|
|
|
deal in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
2008-07-29 11:08:54 +00:00
|
|
|
|
2009-10-13 02:14:27 +00:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2008-07-29 11:08:54 +00:00
|
|
|
|
2009-10-13 02:14:27 +00:00
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
2008-07-29 11:08:54 +00:00
|
|
|
|