mirror of
https://github.com/elua/elua.git
synced 2025-01-08 20:56:17 +08:00
bd1465ca50
Conflicts: SConstruct doc/en/arch_platform.html doc/en/comunity.html doc/en/overview.html doc/en/refman.html doc/en/refman_gen.html doc/en/status.html doc/en/tut_bootstick.html doc/images/lng_pt.png doc/images/minusnode.png doc/images/next.png doc/images/node.png doc/images/nodelast.png doc/images/plusnode.png doc/images/plusnodelast.png doc/images/previous.png doc/images/showall.png doc/images/sync.png doc/images/vertline.png doc/pt/arch.html doc/pt/arch_coding.html doc/pt/arch_con_term.html doc/pt/arch_newport.html doc/pt/arch_overview.html doc/pt/arch_platform.html doc/pt/arch_tcpip.html doc/pt/building.html doc/pt/comunity.html doc/pt/dl_binaries.html doc/pt/dl_old.html doc/pt/dl_sources.html doc/pt/downloads.html doc/pt/examples.html doc/pt/faq.html doc/pt/installing_i386.html doc/pt/installing_lm3s.html doc/pt/news.html doc/pt/overview.html doc/pt/refman_dep.html doc/pt/refman_gen.html doc/pt/status.html doc/pt/tc_386.html doc/pt/toolchains.html doc/pt/tut_openocd.html doc/pt/using.html romfs/LM3S.lua romfs/led.lua romfs/morse.lua romfs/pong.lua src/lua/linit.c src/modules/auxmods.h src/platform/lm3s/platform.c src/platform/lm3s/platform_conf.h src/platform/sim/platform_conf.h
51 lines
2.2 KiB
Plaintext
51 lines
2.2 KiB
Plaintext
The Lua part of eLua is licensed under the Lua licensing terms, which you can
|
|
find at http://www.lua.org/license.html.
|
|
|
|
The XMODEM code is adapted from the FreeBSD at91 library, which was written by
|
|
M. Warner Losh, and is released under the BSD license.
|
|
|
|
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.
|
|
|
|
The "integer only lua" is based on the "Go Long Lua!" patch by John D.
|
|
Ramsdell (from the Lua Power Patches page) and is placed in the public
|
|
domain.
|
|
|
|
The multiple memory allocator (dlmalloc) is written by Doug Lea and it's
|
|
placed on the public domain.
|
|
|
|
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.
|
|
|
|
Manufacturer provided CPU support libraries are licensed under their own
|
|
terms, check src/platform/<platform> for details.
|
|
|
|
The rest of the code is licensed under MIT, listed below.
|
|
|
|
================================================================================
|
|
The MIT License
|
|
|
|
Copyright (c) 2009 Dado Sutter and Bogdan Marinescu
|
|
|
|
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:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
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.
|
|
|