mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-11-16 04:24:45 +00:00
1322 lines
65 KiB
Markdown
1322 lines
65 KiB
Markdown
# RTEMS Licenses
|
|
|
|
The primary RTEMS source image is a collection of software that is licensed
|
|
under a variety of free and open-source licenses appropriate for use in an
|
|
embedded system. A common characteristic of these licenses is that they allow
|
|
linking with no source redistribution requirements placed on the end user's
|
|
application.
|
|
|
|
The following licenses apply to various components within this distribution of
|
|
RTEMS.
|
|
|
|
* [BSD 2-Clause](#bsd-2-clause)
|
|
* This is the most common and preferred license in RTEMS. See
|
|
[Issue #3053](https://gitlab.rtems.org/rtems/rtos/rtems/-/issues/3053).
|
|
* [RTEMS License](#rtems-license)
|
|
* This was the original LICENSE file used in legacy RTEMS software. We
|
|
encourage any copyright holders whose code remains under this license to
|
|
switch to the BSD 2-Clause if possible. This license is based on the
|
|
GPL version 2.0 with a linking exception.
|
|
* [GPL 2.0](#gpl-20) is included as the basis of the RTEMS License and the
|
|
JFFS2 License. It is not otherwise used.
|
|
* [BSD 3-Clause](#bsd-3-clause)
|
|
* [SLAC](#slac)
|
|
* This is a permissive license that appears in code contributed from the
|
|
SLAC National Accelerator Laborator.
|
|
* [CC-BY-SA 4.0](#cc-by-sa-40)
|
|
* This is the preferred license for non-code contributions (documentation).
|
|
It is used as a dual-license for snippets of code that also get used in
|
|
documentation.
|
|
* [Apache 2.0](#apache-20)
|
|
* This is used in some of the Arm BSP code.
|
|
* [Freescale](#freescale)
|
|
* This is referred to as the LICENSE.Freescale file. It is referenced in
|
|
the m68k/mcf548x BSP.
|
|
* [JFFS2](#jffs2)
|
|
* This is the license that applies to use of the JFFS2 Filesystem. It is
|
|
similar to the original RTEMS License as based on GPL 2.0 with a linking
|
|
exception.
|
|
|
|
|
|
## BSD 2-Clause
|
|
|
|
https://spdx.org/licenses/BSD-2-Clause.html
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
Copyright (C) [YYYY], [YYYY] [COPYRIGHT HOLDER]
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions
|
|
are met:
|
|
1. Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
## RTEMS License
|
|
|
|
LICENSE INFORMATION
|
|
|
|
RTEMS is free software; you can redistribute it and/or modify it under
|
|
terms of the GNU General Public License as published by the
|
|
Free Software Foundation; either version 2, or (at your option) any
|
|
later version. RTEMS is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
General Public License for more details. You should have received
|
|
a copy of the GNU General Public License along with RTEMS; see
|
|
file COPYING. If not, write to the Free Software Foundation, 675
|
|
Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
As a special exception, including RTEMS header files in a file,
|
|
instantiating RTEMS generics or templates, or linking other files
|
|
with RTEMS objects to produce an executable application, does not
|
|
by itself cause the resulting executable application to be covered
|
|
by the GNU General Public License. This exception does not
|
|
however invalidate any other reasons why the executable file might be
|
|
covered by the GNU Public License.
|
|
|
|
### GPL 2.0
|
|
|
|
GNU GENERAL PUBLIC LICENSE
|
|
Version 2, June 1991
|
|
|
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
Everyone is permitted to copy and distribute verbatim copies
|
|
of this license document, but changing it is not allowed.
|
|
|
|
Preamble
|
|
|
|
The licenses for most software are designed to take away your
|
|
freedom to share and change it. By contrast, the GNU General Public
|
|
License is intended to guarantee your freedom to share and change free
|
|
software--to make sure the software is free for all its users. This
|
|
General Public License applies to most of the Free Software
|
|
Foundation's software and to any other program whose authors commit to
|
|
using it. (Some other Free Software Foundation software is covered by
|
|
the GNU Lesser General Public License instead.) You can apply it to
|
|
your programs, too.
|
|
|
|
When we speak of free software, we are referring to freedom, not
|
|
price. Our General Public Licenses are designed to make sure that you
|
|
have the freedom to distribute copies of free software (and charge for
|
|
this service if you wish), that you receive source code or can get it
|
|
if you want it, that you can change the software or use pieces of it
|
|
in new free programs; and that you know you can do these things.
|
|
|
|
To protect your rights, we need to make restrictions that forbid
|
|
anyone to deny you these rights or to ask you to surrender the rights.
|
|
These restrictions translate to certain responsibilities for you if you
|
|
distribute copies of the software, or if you modify it.
|
|
|
|
For example, if you distribute copies of such a program, whether
|
|
gratis or for a fee, you must give the recipients all the rights that
|
|
you have. You must make sure that they, too, receive or can get the
|
|
source code. And you must show them these terms so they know their
|
|
rights.
|
|
|
|
We protect your rights with two steps: (1) copyright the software, and
|
|
(2) offer you this license which gives you legal permission to copy,
|
|
distribute and/or modify the software.
|
|
|
|
Also, for each author's protection and ours, we want to make certain
|
|
that everyone understands that there is no warranty for this free
|
|
software. If the software is modified by someone else and passed on, we
|
|
want its recipients to know that what they have is not the original, so
|
|
that any problems introduced by others will not reflect on the original
|
|
authors' reputations.
|
|
|
|
Finally, any free program is threatened constantly by software
|
|
patents. We wish to avoid the danger that redistributors of a free
|
|
program will individually obtain patent licenses, in effect making the
|
|
program proprietary. To prevent this, we have made it clear that any
|
|
patent must be licensed for everyone's free use or not licensed at all.
|
|
|
|
The precise terms and conditions for copying, distribution and
|
|
modification follow.
|
|
|
|
GNU GENERAL PUBLIC LICENSE
|
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
|
|
|
0. This License applies to any program or other work which contains
|
|
a notice placed by the copyright holder saying it may be distributed
|
|
under the terms of this General Public License. The "Program", below,
|
|
refers to any such program or work, and a "work based on the Program"
|
|
means either the Program or any derivative work under copyright law:
|
|
that is to say, a work containing the Program or a portion of it,
|
|
either verbatim or with modifications and/or translated into another
|
|
language. (Hereinafter, translation is included without limitation in
|
|
the term "modification".) Each licensee is addressed as "you".
|
|
|
|
Activities other than copying, distribution and modification are not
|
|
covered by this License; they are outside its scope. The act of
|
|
running the Program is not restricted, and the output from the Program
|
|
is covered only if its contents constitute a work based on the
|
|
Program (independent of having been made by running the Program).
|
|
Whether that is true depends on what the Program does.
|
|
|
|
1. You may copy and distribute verbatim copies of the Program's
|
|
source code as you receive it, in any medium, provided that you
|
|
conspicuously and appropriately publish on each copy an appropriate
|
|
copyright notice and disclaimer of warranty; keep intact all the
|
|
notices that refer to this License and to the absence of any warranty;
|
|
and give any other recipients of the Program a copy of this License
|
|
along with the Program.
|
|
|
|
You may charge a fee for the physical act of transferring a copy, and
|
|
you may at your option offer warranty protection in exchange for a fee.
|
|
|
|
2. You may modify your copy or copies of the Program or any portion
|
|
of it, thus forming a work based on the Program, and copy and
|
|
distribute such modifications or work under the terms of Section 1
|
|
above, provided that you also meet all of these conditions:
|
|
|
|
a) You must cause the modified files to carry prominent notices
|
|
stating that you changed the files and the date of any change.
|
|
|
|
b) You must cause any work that you distribute or publish, that in
|
|
whole or in part contains or is derived from the Program or any
|
|
part thereof, to be licensed as a whole at no charge to all third
|
|
parties under the terms of this License.
|
|
|
|
c) If the modified program normally reads commands interactively
|
|
when run, you must cause it, when started running for such
|
|
interactive use in the most ordinary way, to print or display an
|
|
announcement including an appropriate copyright notice and a
|
|
notice that there is no warranty (or else, saying that you provide
|
|
a warranty) and that users may redistribute the program under
|
|
these conditions, and telling the user how to view a copy of this
|
|
License. (Exception: if the Program itself is interactive but
|
|
does not normally print such an announcement, your work based on
|
|
the Program is not required to print an announcement.)
|
|
|
|
These requirements apply to the modified work as a whole. If
|
|
identifiable sections of that work are not derived from the Program,
|
|
and can be reasonably considered independent and separate works in
|
|
themselves, then this License, and its terms, do not apply to those
|
|
sections when you distribute them as separate works. But when you
|
|
distribute the same sections as part of a whole which is a work based
|
|
on the Program, the distribution of the whole must be on the terms of
|
|
this License, whose permissions for other licensees extend to the
|
|
entire whole, and thus to each and every part regardless of who wrote it.
|
|
|
|
Thus, it is not the intent of this section to claim rights or contest
|
|
your rights to work written entirely by you; rather, the intent is to
|
|
exercise the right to control the distribution of derivative or
|
|
collective works based on the Program.
|
|
|
|
In addition, mere aggregation of another work not based on the Program
|
|
with the Program (or with a work based on the Program) on a volume of
|
|
a storage or distribution medium does not bring the other work under
|
|
the scope of this License.
|
|
|
|
3. You may copy and distribute the Program (or a work based on it,
|
|
under Section 2) in object code or executable form under the terms of
|
|
Sections 1 and 2 above provided that you also do one of the following:
|
|
|
|
a) Accompany it with the complete corresponding machine-readable
|
|
source code, which must be distributed under the terms of Sections
|
|
1 and 2 above on a medium customarily used for software interchange; or,
|
|
|
|
b) Accompany it with a written offer, valid for at least three
|
|
years, to give any third party, for a charge no more than your
|
|
cost of physically performing source distribution, a complete
|
|
machine-readable copy of the corresponding source code, to be
|
|
distributed under the terms of Sections 1 and 2 above on a medium
|
|
customarily used for software interchange; or,
|
|
|
|
c) Accompany it with the information you received as to the offer
|
|
to distribute corresponding source code. (This alternative is
|
|
allowed only for noncommercial distribution and only if you
|
|
received the program in object code or executable form with such
|
|
an offer, in accord with Subsection b above.)
|
|
|
|
The source code for a work means the preferred form of the work for
|
|
making modifications to it. For an executable work, complete source
|
|
code means all the source code for all modules it contains, plus any
|
|
associated interface definition files, plus the scripts used to
|
|
control compilation and installation of the executable. However, as a
|
|
special exception, the source code distributed need not include
|
|
anything that is normally distributed (in either source or binary
|
|
form) with the major components (compiler, kernel, and so on) of the
|
|
operating system on which the executable runs, unless that component
|
|
itself accompanies the executable.
|
|
|
|
If distribution of executable or object code is made by offering
|
|
access to copy from a designated place, then offering equivalent
|
|
access to copy the source code from the same place counts as
|
|
distribution of the source code, even though third parties are not
|
|
compelled to copy the source along with the object code.
|
|
|
|
4. You may not copy, modify, sublicense, or distribute the Program
|
|
except as expressly provided under this License. Any attempt
|
|
otherwise to copy, modify, sublicense or distribute the Program is
|
|
void, and will automatically terminate your rights under this License.
|
|
However, parties who have received copies, or rights, from you under
|
|
this License will not have their licenses terminated so long as such
|
|
parties remain in full compliance.
|
|
|
|
5. You are not required to accept this License, since you have not
|
|
signed it. However, nothing else grants you permission to modify or
|
|
distribute the Program or its derivative works. These actions are
|
|
prohibited by law if you do not accept this License. Therefore, by
|
|
modifying or distributing the Program (or any work based on the
|
|
Program), you indicate your acceptance of this License to do so, and
|
|
all its terms and conditions for copying, distributing or modifying
|
|
the Program or works based on it.
|
|
|
|
6. Each time you redistribute the Program (or any work based on the
|
|
Program), the recipient automatically receives a license from the
|
|
original licensor to copy, distribute or modify the Program subject to
|
|
these terms and conditions. You may not impose any further
|
|
restrictions on the recipients' exercise of the rights granted herein.
|
|
You are not responsible for enforcing compliance by third parties to
|
|
this License.
|
|
|
|
7. If, as a consequence of a court judgment or allegation of patent
|
|
infringement or for any other reason (not limited to patent issues),
|
|
conditions are imposed on you (whether by court order, agreement or
|
|
otherwise) that contradict the conditions of this License, they do not
|
|
excuse you from the conditions of this License. If you cannot
|
|
distribute so as to satisfy simultaneously your obligations under this
|
|
License and any other pertinent obligations, then as a consequence you
|
|
may not distribute the Program at all. For example, if a patent
|
|
license would not permit royalty-free redistribution of the Program by
|
|
all those who receive copies directly or indirectly through you, then
|
|
the only way you could satisfy both it and this License would be to
|
|
refrain entirely from distribution of the Program.
|
|
|
|
If any portion of this section is held invalid or unenforceable under
|
|
any particular circumstance, the balance of the section is intended to
|
|
apply and the section as a whole is intended to apply in other
|
|
circumstances.
|
|
|
|
It is not the purpose of this section to induce you to infringe any
|
|
patents or other property right claims or to contest validity of any
|
|
such claims; this section has the sole purpose of protecting the
|
|
integrity of the free software distribution system, which is
|
|
implemented by public license practices. Many people have made
|
|
generous contributions to the wide range of software distributed
|
|
through that system in reliance on consistent application of that
|
|
system; it is up to the author/donor to decide if he or she is willing
|
|
to distribute software through any other system and a licensee cannot
|
|
impose that choice.
|
|
|
|
This section is intended to make thoroughly clear what is believed to
|
|
be a consequence of the rest of this License.
|
|
|
|
8. If the distribution and/or use of the Program is restricted in
|
|
certain countries either by patents or by copyrighted interfaces, the
|
|
original copyright holder who places the Program under this License
|
|
may add an explicit geographical distribution limitation excluding
|
|
those countries, so that distribution is permitted only in or among
|
|
countries not thus excluded. In such case, this License incorporates
|
|
the limitation as if written in the body of this License.
|
|
|
|
9. The Free Software Foundation may publish revised and/or new versions
|
|
of the General Public License from time to time. Such new versions will
|
|
be similar in spirit to the present version, but may differ in detail to
|
|
address new problems or concerns.
|
|
|
|
Each version is given a distinguishing version number. If the Program
|
|
specifies a version number of this License which applies to it and "any
|
|
later version", you have the option of following the terms and conditions
|
|
either of that version or of any later version published by the Free
|
|
Software Foundation. If the Program does not specify a version number of
|
|
this License, you may choose any version ever published by the Free Software
|
|
Foundation.
|
|
|
|
10. If you wish to incorporate parts of the Program into other free
|
|
programs whose distribution conditions are different, write to the author
|
|
to ask for permission. For software which is copyrighted by the Free
|
|
Software Foundation, write to the Free Software Foundation; we sometimes
|
|
make exceptions for this. Our decision will be guided by the two goals
|
|
of preserving the free status of all derivatives of our free software and
|
|
of promoting the sharing and reuse of software generally.
|
|
|
|
NO WARRANTY
|
|
|
|
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
|
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
|
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
|
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
|
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
|
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
|
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
|
REPAIR OR CORRECTION.
|
|
|
|
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
|
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
|
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
|
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
|
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
|
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
|
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
|
POSSIBILITY OF SUCH DAMAGES.
|
|
|
|
END OF TERMS AND CONDITIONS
|
|
|
|
How to Apply These Terms to Your New Programs
|
|
|
|
If you develop a new program, and you want it to be of the greatest
|
|
possible use to the public, the best way to achieve this is to make it
|
|
free software which everyone can redistribute and change under these terms.
|
|
|
|
To do so, attach the following notices to the program. It is safest
|
|
to attach them to the start of each source file to most effectively
|
|
convey the exclusion of warranty; and each file should have at least
|
|
the "copyright" line and a pointer to where the full notice is found.
|
|
|
|
<one line to give the program's name and a brief idea of what it does.>
|
|
Copyright (C) <year> <name of author>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
Also add information on how to contact you by electronic and paper mail.
|
|
|
|
If the program is interactive, make it output a short notice like this
|
|
when it starts in an interactive mode:
|
|
|
|
Gnomovision version 69, Copyright (C) year name of author
|
|
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
|
This is free software, and you are welcome to redistribute it
|
|
under certain conditions; type `show c' for details.
|
|
|
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
|
parts of the General Public License. Of course, the commands you use may
|
|
be called something other than `show w' and `show c'; they could even be
|
|
mouse-clicks or menu items--whatever suits your program.
|
|
|
|
You should also get your employer (if you work as a programmer) or your
|
|
school, if any, to sign a "copyright disclaimer" for the program, if
|
|
necessary. Here is a sample; alter the names:
|
|
|
|
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
|
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
|
|
|
<signature of Ty Coon>, 1 April 1989
|
|
Ty Coon, President of Vice
|
|
|
|
This General Public License does not permit incorporating your program into
|
|
proprietary programs. If your program is a subroutine library, you may
|
|
consider it more useful to permit linking proprietary applications with the
|
|
library. If this is what you want to do, use the GNU Lesser General
|
|
Public License instead of this License.
|
|
|
|
|
|
## BSD 3-Clause
|
|
|
|
https://spdx.org/licenses/BSD-3-Clause
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are
|
|
met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
2. Redistributions in binary form must reproduce the above
|
|
copyright notice, this list of conditions and the following
|
|
disclaimer in the documentation and/or other materials provided
|
|
with the distribution.
|
|
3. Neither the name of the copyright holder nor the names of its
|
|
contributors may be used to endorse or promote products derived
|
|
from this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
## SLAC
|
|
|
|
This license is used by developers from the SLAC National Accelerator
|
|
Laboratory (Stanford Linear Acelerator Center) when they contribute to RTEMS.
|
|
It is generally referred to as the Stanford Permissive License. The file header
|
|
template is included here for completeness.
|
|
|
|
Authorship
|
|
----------
|
|
This software ([SOFTWARE]) was created by
|
|
[AUTHOR] <[EMAIL]>, [YYYY]-[YYYY],
|
|
Stanford Linear Accelerator Center, Stanford University.
|
|
|
|
Acknowledgement of sponsorship
|
|
------------------------------
|
|
The software was produced by
|
|
the Stanford Linear Accelerator Center, Stanford University,
|
|
under Contract [NUMBER] with the [ORGANIZATION].
|
|
|
|
Government disclaimer of liability
|
|
----------------------------------
|
|
Neither the United States nor the United States Department of Energy,
|
|
nor any of their employees, makes any warranty, express or implied, or
|
|
assumes any legal liability or responsibility for the accuracy,
|
|
completeness, or usefulness of any data, apparatus, product, or process
|
|
disclosed, or represents that its use would not infringe privately owned
|
|
rights.
|
|
|
|
Stanford disclaimer of liability
|
|
--------------------------------
|
|
Stanford University makes no representations or warranties, express or
|
|
implied, nor assumes any liability for the use of this software.
|
|
|
|
Stanford disclaimer of copyright
|
|
--------------------------------
|
|
Stanford University, owner of the copyright, hereby disclaims its
|
|
copyright and all other rights in this software. Hence, anyone may
|
|
freely use it for any purpose without restriction.
|
|
|
|
Maintenance of notices
|
|
----------------------
|
|
In the interest of clarity regarding the origin and status of this
|
|
SLAC software, this and all the preceding Stanford University notices
|
|
are to remain affixed to any copy or derivative of this software made
|
|
or distributed by the recipient and are to be affixed to any copy of
|
|
software made or distributed by the recipient that contains a copy or
|
|
derivative of this software.
|
|
|
|
------------------ SLAC Software Notices, Set 4 OTT.002a, 2004 FEB 03
|
|
|
|
|
|
## CC-BY-SA 4.0
|
|
|
|
Attribution-ShareAlike 4.0 International
|
|
|
|
=======================================================================
|
|
|
|
Creative Commons Corporation ("Creative Commons") is not a law firm and
|
|
does not provide legal services or legal advice. Distribution of
|
|
Creative Commons public licenses does not create a lawyer-client or
|
|
other relationship. Creative Commons makes its licenses and related
|
|
information available on an "as-is" basis. Creative Commons gives no
|
|
warranties regarding its licenses, any material licensed under their
|
|
terms and conditions, or any related information. Creative Commons
|
|
disclaims all liability for damages resulting from their use to the
|
|
fullest extent possible.
|
|
|
|
Using Creative Commons Public Licenses
|
|
|
|
Creative Commons public licenses provide a standard set of terms and
|
|
conditions that creators and other rights holders may use to share
|
|
original works of authorship and other material subject to copyright
|
|
and certain other rights specified in the public license below. The
|
|
following considerations are for informational purposes only, are not
|
|
exhaustive, and do not form part of our licenses.
|
|
|
|
Considerations for licensors: Our public licenses are
|
|
intended for use by those authorized to give the public
|
|
permission to use material in ways otherwise restricted by
|
|
copyright and certain other rights. Our licenses are
|
|
irrevocable. Licensors should read and understand the terms
|
|
and conditions of the license they choose before applying it.
|
|
Licensors should also secure all rights necessary before
|
|
applying our licenses so that the public can reuse the
|
|
material as expected. Licensors should clearly mark any
|
|
material not subject to the license. This includes other CC-
|
|
licensed material, or material used under an exception or
|
|
limitation to copyright. More considerations for licensors:
|
|
wiki.creativecommons.org/Considerations_for_licensors
|
|
|
|
Considerations for the public: By using one of our public
|
|
licenses, a licensor grants the public permission to use the
|
|
licensed material under specified terms and conditions. If
|
|
the licensor's permission is not necessary for any reason--for
|
|
example, because of any applicable exception or limitation to
|
|
copyright--then that use is not regulated by the license. Our
|
|
licenses grant only permissions under copyright and certain
|
|
other rights that a licensor has authority to grant. Use of
|
|
the licensed material may still be restricted for other
|
|
reasons, including because others have copyright or other
|
|
rights in the material. A licensor may make special requests,
|
|
such as asking that all changes be marked or described.
|
|
Although not required by our licenses, you are encouraged to
|
|
respect those requests where reasonable. More considerations
|
|
for the public:
|
|
wiki.creativecommons.org/Considerations_for_licensees
|
|
|
|
=======================================================================
|
|
|
|
Creative Commons Attribution-ShareAlike 4.0 International Public
|
|
License
|
|
|
|
By exercising the Licensed Rights (defined below), You accept and agree
|
|
to be bound by the terms and conditions of this Creative Commons
|
|
Attribution-ShareAlike 4.0 International Public License ("Public
|
|
License"). To the extent this Public License may be interpreted as a
|
|
contract, You are granted the Licensed Rights in consideration of Your
|
|
acceptance of these terms and conditions, and the Licensor grants You
|
|
such rights in consideration of benefits the Licensor receives from
|
|
making the Licensed Material available under these terms and
|
|
conditions.
|
|
|
|
|
|
Section 1 -- Definitions.
|
|
|
|
a. Adapted Material means material subject to Copyright and Similar
|
|
Rights that is derived from or based upon the Licensed Material
|
|
and in which the Licensed Material is translated, altered,
|
|
arranged, transformed, or otherwise modified in a manner requiring
|
|
permission under the Copyright and Similar Rights held by the
|
|
Licensor. For purposes of this Public License, where the Licensed
|
|
Material is a musical work, performance, or sound recording,
|
|
Adapted Material is always produced where the Licensed Material is
|
|
synched in timed relation with a moving image.
|
|
|
|
b. Adapter's License means the license You apply to Your Copyright
|
|
and Similar Rights in Your contributions to Adapted Material in
|
|
accordance with the terms and conditions of this Public License.
|
|
|
|
c. BY-SA Compatible License means a license listed at
|
|
creativecommons.org/compatiblelicenses, approved by Creative
|
|
Commons as essentially the equivalent of this Public License.
|
|
|
|
d. Copyright and Similar Rights means copyright and/or similar rights
|
|
closely related to copyright including, without limitation,
|
|
performance, broadcast, sound recording, and Sui Generis Database
|
|
Rights, without regard to how the rights are labeled or
|
|
categorized. For purposes of this Public License, the rights
|
|
specified in Section 2(b)(1)-(2) are not Copyright and Similar
|
|
Rights.
|
|
|
|
e. Effective Technological Measures means those measures that, in the
|
|
absence of proper authority, may not be circumvented under laws
|
|
fulfilling obligations under Article 11 of the WIPO Copyright
|
|
Treaty adopted on December 20, 1996, and/or similar international
|
|
agreements.
|
|
|
|
f. Exceptions and Limitations means fair use, fair dealing, and/or
|
|
any other exception or limitation to Copyright and Similar Rights
|
|
that applies to Your use of the Licensed Material.
|
|
|
|
g. License Elements means the license attributes listed in the name
|
|
of a Creative Commons Public License. The License Elements of this
|
|
Public License are Attribution and ShareAlike.
|
|
|
|
h. Licensed Material means the artistic or literary work, database,
|
|
or other material to which the Licensor applied this Public
|
|
License.
|
|
|
|
i. Licensed Rights means the rights granted to You subject to the
|
|
terms and conditions of this Public License, which are limited to
|
|
all Copyright and Similar Rights that apply to Your use of the
|
|
Licensed Material and that the Licensor has authority to license.
|
|
|
|
j. Licensor means the individual(s) or entity(ies) granting rights
|
|
under this Public License.
|
|
|
|
k. Share means to provide material to the public by any means or
|
|
process that requires permission under the Licensed Rights, such
|
|
as reproduction, public display, public performance, distribution,
|
|
dissemination, communication, or importation, and to make material
|
|
available to the public including in ways that members of the
|
|
public may access the material from a place and at a time
|
|
individually chosen by them.
|
|
|
|
l. Sui Generis Database Rights means rights other than copyright
|
|
resulting from Directive 96/9/EC of the European Parliament and of
|
|
the Council of 11 March 1996 on the legal protection of databases,
|
|
as amended and/or succeeded, as well as other essentially
|
|
equivalent rights anywhere in the world.
|
|
|
|
m. You means the individual or entity exercising the Licensed Rights
|
|
under this Public License. Your has a corresponding meaning.
|
|
|
|
|
|
Section 2 -- Scope.
|
|
|
|
a. License grant.
|
|
|
|
1. Subject to the terms and conditions of this Public License,
|
|
the Licensor hereby grants You a worldwide, royalty-free,
|
|
non-sublicensable, non-exclusive, irrevocable license to
|
|
exercise the Licensed Rights in the Licensed Material to:
|
|
|
|
a. reproduce and Share the Licensed Material, in whole or
|
|
in part; and
|
|
|
|
b. produce, reproduce, and Share Adapted Material.
|
|
|
|
2. Exceptions and Limitations. For the avoidance of doubt, where
|
|
Exceptions and Limitations apply to Your use, this Public
|
|
License does not apply, and You do not need to comply with
|
|
its terms and conditions.
|
|
|
|
3. Term. The term of this Public License is specified in Section
|
|
6(a).
|
|
|
|
4. Media and formats; technical modifications allowed. The
|
|
Licensor authorizes You to exercise the Licensed Rights in
|
|
all media and formats whether now known or hereafter created,
|
|
and to make technical modifications necessary to do so. The
|
|
Licensor waives and/or agrees not to assert any right or
|
|
authority to forbid You from making technical modifications
|
|
necessary to exercise the Licensed Rights, including
|
|
technical modifications necessary to circumvent Effective
|
|
Technological Measures. For purposes of this Public License,
|
|
simply making modifications authorized by this Section 2(a)
|
|
(4) never produces Adapted Material.
|
|
|
|
5. Downstream recipients.
|
|
|
|
a. Offer from the Licensor -- Licensed Material. Every
|
|
recipient of the Licensed Material automatically
|
|
receives an offer from the Licensor to exercise the
|
|
Licensed Rights under the terms and conditions of this
|
|
Public License.
|
|
|
|
b. Additional offer from the Licensor -- Adapted Material.
|
|
Every recipient of Adapted Material from You
|
|
automatically receives an offer from the Licensor to
|
|
exercise the Licensed Rights in the Adapted Material
|
|
under the conditions of the Adapter's License You apply.
|
|
|
|
c. No downstream restrictions. You may not offer or impose
|
|
any additional or different terms or conditions on, or
|
|
apply any Effective Technological Measures to, the
|
|
Licensed Material if doing so restricts exercise of the
|
|
Licensed Rights by any recipient of the Licensed
|
|
Material.
|
|
|
|
6. No endorsement. Nothing in this Public License constitutes or
|
|
may be construed as permission to assert or imply that You
|
|
are, or that Your use of the Licensed Material is, connected
|
|
with, or sponsored, endorsed, or granted official status by,
|
|
the Licensor or others designated to receive attribution as
|
|
provided in Section 3(a)(1)(A)(i).
|
|
|
|
b. Other rights.
|
|
|
|
1. Moral rights, such as the right of integrity, are not
|
|
licensed under this Public License, nor are publicity,
|
|
privacy, and/or other similar personality rights; however, to
|
|
the extent possible, the Licensor waives and/or agrees not to
|
|
assert any such rights held by the Licensor to the limited
|
|
extent necessary to allow You to exercise the Licensed
|
|
Rights, but not otherwise.
|
|
|
|
2. Patent and trademark rights are not licensed under this
|
|
Public License.
|
|
|
|
3. To the extent possible, the Licensor waives any right to
|
|
collect royalties from You for the exercise of the Licensed
|
|
Rights, whether directly or through a collecting society
|
|
under any voluntary or waivable statutory or compulsory
|
|
licensing scheme. In all other cases the Licensor expressly
|
|
reserves any right to collect such royalties.
|
|
|
|
|
|
Section 3 -- License Conditions.
|
|
|
|
Your exercise of the Licensed Rights is expressly made subject to the
|
|
following conditions.
|
|
|
|
a. Attribution.
|
|
|
|
1. If You Share the Licensed Material (including in modified
|
|
form), You must:
|
|
|
|
a. retain the following if it is supplied by the Licensor
|
|
with the Licensed Material:
|
|
|
|
i. identification of the creator(s) of the Licensed
|
|
Material and any others designated to receive
|
|
attribution, in any reasonable manner requested by
|
|
the Licensor (including by pseudonym if
|
|
designated);
|
|
|
|
ii. a copyright notice;
|
|
|
|
iii. a notice that refers to this Public License;
|
|
|
|
iv. a notice that refers to the disclaimer of
|
|
warranties;
|
|
|
|
v. a URI or hyperlink to the Licensed Material to the
|
|
extent reasonably practicable;
|
|
|
|
b. indicate if You modified the Licensed Material and
|
|
retain an indication of any previous modifications; and
|
|
|
|
c. indicate the Licensed Material is licensed under this
|
|
Public License, and include the text of, or the URI or
|
|
hyperlink to, this Public License.
|
|
|
|
2. You may satisfy the conditions in Section 3(a)(1) in any
|
|
reasonable manner based on the medium, means, and context in
|
|
which You Share the Licensed Material. For example, it may be
|
|
reasonable to satisfy the conditions by providing a URI or
|
|
hyperlink to a resource that includes the required
|
|
information.
|
|
|
|
3. If requested by the Licensor, You must remove any of the
|
|
information required by Section 3(a)(1)(A) to the extent
|
|
reasonably practicable.
|
|
|
|
b. ShareAlike.
|
|
|
|
In addition to the conditions in Section 3(a), if You Share
|
|
Adapted Material You produce, the following conditions also apply.
|
|
|
|
1. The Adapter's License You apply must be a Creative Commons
|
|
license with the same License Elements, this version or
|
|
later, or a BY-SA Compatible License.
|
|
|
|
2. You must include the text of, or the URI or hyperlink to, the
|
|
Adapter's License You apply. You may satisfy this condition
|
|
in any reasonable manner based on the medium, means, and
|
|
context in which You Share Adapted Material.
|
|
|
|
3. You may not offer or impose any additional or different terms
|
|
or conditions on, or apply any Effective Technological
|
|
Measures to, Adapted Material that restrict exercise of the
|
|
rights granted under the Adapter's License You apply.
|
|
|
|
|
|
Section 4 -- Sui Generis Database Rights.
|
|
|
|
Where the Licensed Rights include Sui Generis Database Rights that
|
|
apply to Your use of the Licensed Material:
|
|
|
|
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
|
|
to extract, reuse, reproduce, and Share all or a substantial
|
|
portion of the contents of the database;
|
|
|
|
b. if You include all or a substantial portion of the database
|
|
contents in a database in which You have Sui Generis Database
|
|
Rights, then the database in which You have Sui Generis Database
|
|
Rights (but not its individual contents) is Adapted Material,
|
|
|
|
including for purposes of Section 3(b); and
|
|
c. You must comply with the conditions in Section 3(a) if You Share
|
|
all or a substantial portion of the contents of the database.
|
|
|
|
For the avoidance of doubt, this Section 4 supplements and does not
|
|
replace Your obligations under this Public License where the Licensed
|
|
Rights include other Copyright and Similar Rights.
|
|
|
|
|
|
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
|
|
|
|
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
|
|
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
|
|
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
|
|
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
|
|
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
|
|
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
|
|
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
|
|
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
|
|
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
|
|
|
|
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
|
|
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
|
|
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
|
|
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
|
|
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
|
|
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
|
|
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
|
|
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
|
|
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
|
|
|
|
c. The disclaimer of warranties and limitation of liability provided
|
|
above shall be interpreted in a manner that, to the extent
|
|
possible, most closely approximates an absolute disclaimer and
|
|
waiver of all liability.
|
|
|
|
|
|
Section 6 -- Term and Termination.
|
|
|
|
a. This Public License applies for the term of the Copyright and
|
|
Similar Rights licensed here. However, if You fail to comply with
|
|
this Public License, then Your rights under this Public License
|
|
terminate automatically.
|
|
|
|
b. Where Your right to use the Licensed Material has terminated under
|
|
Section 6(a), it reinstates:
|
|
|
|
1. automatically as of the date the violation is cured, provided
|
|
it is cured within 30 days of Your discovery of the
|
|
violation; or
|
|
|
|
2. upon express reinstatement by the Licensor.
|
|
|
|
For the avoidance of doubt, this Section 6(b) does not affect any
|
|
right the Licensor may have to seek remedies for Your violations
|
|
of this Public License.
|
|
|
|
c. For the avoidance of doubt, the Licensor may also offer the
|
|
Licensed Material under separate terms or conditions or stop
|
|
distributing the Licensed Material at any time; however, doing so
|
|
will not terminate this Public License.
|
|
|
|
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
|
|
License.
|
|
|
|
|
|
Section 7 -- Other Terms and Conditions.
|
|
|
|
a. The Licensor shall not be bound by any additional or different
|
|
terms or conditions communicated by You unless expressly agreed.
|
|
|
|
b. Any arrangements, understandings, or agreements regarding the
|
|
Licensed Material not stated herein are separate from and
|
|
independent of the terms and conditions of this Public License.
|
|
|
|
|
|
Section 8 -- Interpretation.
|
|
|
|
a. For the avoidance of doubt, this Public License does not, and
|
|
shall not be interpreted to, reduce, limit, restrict, or impose
|
|
conditions on any use of the Licensed Material that could lawfully
|
|
be made without permission under this Public License.
|
|
|
|
b. To the extent possible, if any provision of this Public License is
|
|
deemed unenforceable, it shall be automatically reformed to the
|
|
minimum extent necessary to make it enforceable. If the provision
|
|
cannot be reformed, it shall be severed from this Public License
|
|
without affecting the enforceability of the remaining terms and
|
|
conditions.
|
|
|
|
c. No term or condition of this Public License will be waived and no
|
|
failure to comply consented to unless expressly agreed to by the
|
|
Licensor.
|
|
|
|
d. Nothing in this Public License constitutes or may be interpreted
|
|
as a limitation upon, or waiver of, any privileges and immunities
|
|
that apply to the Licensor or You, including from the legal
|
|
processes of any jurisdiction or authority.
|
|
|
|
|
|
=======================================================================
|
|
|
|
Creative Commons is not a party to its public
|
|
licenses. Notwithstanding, Creative Commons may elect to apply one of
|
|
its public licenses to material it publishes and in those instances
|
|
will be considered the "Licensor." The text of the Creative Commons
|
|
public licenses is dedicated to the public domain under the CC0 Public
|
|
Domain Dedication. Except for the limited purpose of indicating that
|
|
material is shared under a Creative Commons public license or as
|
|
otherwise permitted by the Creative Commons policies published at
|
|
creativecommons.org/policies, Creative Commons does not authorize the
|
|
use of the trademark "Creative Commons" or any other trademark or logo
|
|
of Creative Commons without its prior written consent including,
|
|
without limitation, in connection with any unauthorized modifications
|
|
to any of its public licenses or any other arrangements,
|
|
understandings, or agreements concerning use of licensed material. For
|
|
the avoidance of doubt, this paragraph does not form part of the
|
|
public licenses.
|
|
|
|
Creative Commons may be contacted at creativecommons.org.
|
|
|
|
|
|
## Apache 2.0
|
|
Apache License
|
|
Version 2.0, January 2004
|
|
http://www.apache.org/licenses/
|
|
|
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
|
|
1. Definitions.
|
|
|
|
"License" shall mean the terms and conditions for use, reproduction,
|
|
and distribution as defined by Sections 1 through 9 of this document.
|
|
|
|
"Licensor" shall mean the copyright owner or entity authorized by
|
|
the copyright owner that is granting the License.
|
|
|
|
"Legal Entity" shall mean the union of the acting entity and all
|
|
other entities that control, are controlled by, or are under common
|
|
control with that entity. For the purposes of this definition,
|
|
"control" means (i) the power, direct or indirect, to cause the
|
|
direction or management of such entity, whether by contract or
|
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
|
|
"You" (or "Your") shall mean an individual or Legal Entity
|
|
exercising permissions granted by this License.
|
|
|
|
"Source" form shall mean the preferred form for making modifications,
|
|
including but not limited to software source code, documentation
|
|
source, and configuration files.
|
|
|
|
"Object" form shall mean any form resulting from mechanical
|
|
transformation or translation of a Source form, including but
|
|
not limited to compiled object code, generated documentation,
|
|
and conversions to other media types.
|
|
|
|
"Work" shall mean the work of authorship, whether in Source or
|
|
Object form, made available under the License, as indicated by a
|
|
copyright notice that is included in or attached to the work
|
|
(an example is provided in the Appendix below).
|
|
|
|
"Derivative Works" shall mean any work, whether in Source or Object
|
|
form, that is based on (or derived from) the Work and for which the
|
|
editorial revisions, annotations, elaborations, or other modifications
|
|
represent, as a whole, an original work of authorship. For the purposes
|
|
of this License, Derivative Works shall not include works that remain
|
|
separable from, or merely link (or bind by name) to the interfaces of,
|
|
the Work and Derivative Works thereof.
|
|
|
|
"Contribution" shall mean any work of authorship, including
|
|
the original version of the Work and any modifications or additions
|
|
to that Work or Derivative Works thereof, that is intentionally
|
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
or by an individual or Legal Entity authorized to submit on behalf of
|
|
the copyright owner. For the purposes of this definition, "submitted"
|
|
means any form of electronic, verbal, or written communication sent
|
|
to the Licensor or its representatives, including but not limited to
|
|
communication on electronic mailing lists, source code control systems,
|
|
and issue tracking systems that are managed by, or on behalf of, the
|
|
Licensor for the purpose of discussing and improving the Work, but
|
|
excluding communication that is conspicuously marked or otherwise
|
|
designated in writing by the copyright owner as "Not a Contribution."
|
|
|
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
on behalf of whom a Contribution has been received by Licensor and
|
|
subsequently incorporated within the Work.
|
|
|
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
this License, each Contributor hereby grants to You a perpetual,
|
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
copyright license to reproduce, prepare Derivative Works of,
|
|
publicly display, publicly perform, sublicense, and distribute the
|
|
Work and such Derivative Works in Source or Object form.
|
|
|
|
3. Grant of Patent License. Subject to the terms and conditions of
|
|
this License, each Contributor hereby grants to You a perpetual,
|
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
(except as stated in this section) patent license to make, have made,
|
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
where such license applies only to those patent claims licensable
|
|
by such Contributor that are necessarily infringed by their
|
|
Contribution(s) alone or by combination of their Contribution(s)
|
|
with the Work to which such Contribution(s) was submitted. If You
|
|
institute patent litigation against any entity (including a
|
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
or a Contribution incorporated within the Work constitutes direct
|
|
or contributory patent infringement, then any patent licenses
|
|
granted to You under this License for that Work shall terminate
|
|
as of the date such litigation is filed.
|
|
|
|
4. Redistribution. You may reproduce and distribute copies of the
|
|
Work or Derivative Works thereof in any medium, with or without
|
|
modifications, and in Source or Object form, provided that You
|
|
meet the following conditions:
|
|
|
|
(a) You must give any other recipients of the Work or
|
|
Derivative Works a copy of this License; and
|
|
|
|
(b) You must cause any modified files to carry prominent notices
|
|
stating that You changed the files; and
|
|
|
|
(c) You must retain, in the Source form of any Derivative Works
|
|
that You distribute, all copyright, patent, trademark, and
|
|
attribution notices from the Source form of the Work,
|
|
excluding those notices that do not pertain to any part of
|
|
the Derivative Works; and
|
|
|
|
(d) If the Work includes a "NOTICE" text file as part of its
|
|
distribution, then any Derivative Works that You distribute must
|
|
include a readable copy of the attribution notices contained
|
|
within such NOTICE file, excluding those notices that do not
|
|
pertain to any part of the Derivative Works, in at least one
|
|
of the following places: within a NOTICE text file distributed
|
|
as part of the Derivative Works; within the Source form or
|
|
documentation, if provided along with the Derivative Works; or,
|
|
within a display generated by the Derivative Works, if and
|
|
wherever such third-party notices normally appear. The contents
|
|
of the NOTICE file are for informational purposes only and
|
|
do not modify the License. You may add Your own attribution
|
|
notices within Derivative Works that You distribute, alongside
|
|
or as an addendum to the NOTICE text from the Work, provided
|
|
that such additional attribution notices cannot be construed
|
|
as modifying the License.
|
|
|
|
You may add Your own copyright statement to Your modifications and
|
|
may provide additional or different license terms and conditions
|
|
for use, reproduction, or distribution of Your modifications, or
|
|
for any such Derivative Works as a whole, provided Your use,
|
|
reproduction, and distribution of the Work otherwise complies with
|
|
the conditions stated in this License.
|
|
|
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
any Contribution intentionally submitted for inclusion in the Work
|
|
by You to the Licensor shall be under the terms and conditions of
|
|
this License, without any additional terms or conditions.
|
|
Notwithstanding the above, nothing herein shall supersede or modify
|
|
the terms of any separate license agreement you may have executed
|
|
with Licensor regarding such Contributions.
|
|
|
|
6. Trademarks. This License does not grant permission to use the trade
|
|
names, trademarks, service marks, or product names of the Licensor,
|
|
except as required for reasonable and customary use in describing the
|
|
origin of the Work and reproducing the content of the NOTICE file.
|
|
|
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
agreed to in writing, Licensor provides the Work (and each
|
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
implied, including, without limitation, any warranties or conditions
|
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
appropriateness of using or redistributing the Work and assume any
|
|
risks associated with Your exercise of permissions under this License.
|
|
|
|
8. Limitation of Liability. In no event and under no legal theory,
|
|
whether in tort (including negligence), contract, or otherwise,
|
|
unless required by applicable law (such as deliberate and grossly
|
|
negligent acts) or agreed to in writing, shall any Contributor be
|
|
liable to You for damages, including any direct, indirect, special,
|
|
incidental, or consequential damages of any character arising as a
|
|
result of this License or out of the use or inability to use the
|
|
Work (including but not limited to damages for loss of goodwill,
|
|
work stoppage, computer failure or malfunction, or any and all
|
|
other commercial damages or losses), even if such Contributor
|
|
has been advised of the possibility of such damages.
|
|
|
|
9. Accepting Warranty or Additional Liability. While redistributing
|
|
the Work or Derivative Works thereof, You may choose to offer,
|
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
or other liability obligations and/or rights consistent with this
|
|
License. However, in accepting such obligations, You may act only
|
|
on Your own behalf and on Your sole responsibility, not on behalf
|
|
of any other Contributor, and only if You agree to indemnify,
|
|
defend, and hold each Contributor harmless for any liability
|
|
incurred by, or claims asserted against, such Contributor by reason
|
|
of your accepting any such warranty or additional liability.
|
|
|
|
END OF TERMS AND CONDITIONS
|
|
|
|
APPENDIX: How to apply the Apache License to your work.
|
|
|
|
To apply the Apache License to your work, attach the following
|
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
replaced with your own identifying information. (Don't include
|
|
the brackets!) The text should be enclosed in the appropriate
|
|
comment syntax for the file format. We also recommend that a
|
|
file or class name and description of purpose be included on the
|
|
same "printed page" as the copyright notice for easier
|
|
identification within third-party archives.
|
|
|
|
Copyright [yyyy] [name of copyright owner]
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
|
|
## Freescale
|
|
|
|
FREESCALE SEMICONDUCTOR SOFTWARE LICENSE AGREEMENT
|
|
|
|
This is a legal agreement between you (either as an individual or as an
|
|
authorized representative of your employer) and Freescale Semiconductor,
|
|
Inc. ("Freescale"). It concerns your rights to use this file and any
|
|
accompanying written materials (the "Software"). In consideration for
|
|
Freescale allowing you to access the Software, you are agreeing to be
|
|
bound by the terms of this Agreement. If you do not agree to all of the
|
|
terms of this Agreement, do not download the Software. If you change your
|
|
mind later, stop using the Software and delete all copies of the Software
|
|
in your possession or control. Any copies of the Software that you have
|
|
already distributed, where permitted, and do not destroy will continue
|
|
to be governed by this Agreement. Your prior use will also continue to
|
|
be governed by this Agreement.
|
|
|
|
LICENSE GRANT. Freescale grants to you, free of charge, the
|
|
non-exclusive, non-transferable right (1) to use the Software, (2) to
|
|
reproduce the Software, (3) to prepare derivative works of the Software,
|
|
(4) to distribute the Software and derivative works thereof in source
|
|
(human-readable) form and object (machine readable) form, and (5) to
|
|
sublicense to others the right to use the distributed Software. If you
|
|
violate any of the terms or restrictions of this Agreement, Freescale
|
|
may immediately terminate this Agreement, and require that you stop
|
|
using and delete all copies of the Software in your possession or control.
|
|
|
|
COPYRIGHT. The Software is licensed to you, not sold. Freescale
|
|
owns the Software, and United States copyright laws and international
|
|
treaty provisions protect the Software. Therefore, you must treat the
|
|
Software like any other copyrighted material (e.g. a book or musical
|
|
recording). You may not use or copy the Software for any other purpose
|
|
than what is described in this Agreement. Except as expressly provided
|
|
herein, Freescale does not grant to you any express or implied rights
|
|
under any Freescale or third-party patents, copyrights, trademarks, or
|
|
trade secrets. Additionally, you must reproduce and apply any copyright or
|
|
other proprietary rights notices included on or embedded in the Software
|
|
to any copies or derivative works made thereof, in whole or in part,
|
|
if any.
|
|
|
|
SUPPORT. Freescale is NOT obligated to provide any support, upgrades or
|
|
new releases of the Software. If you wish, you may contact Freescale and
|
|
report problems and provide suggestions regarding the Software. Freescale
|
|
has no obligation whatsoever to respond in any way to such a problem
|
|
report or suggestion. Freescale may make changes to the Software at any
|
|
time, without any obligation to notify or provide updated versions of
|
|
the Software to you.
|
|
|
|
NO WARRANTY. TO THE MAXIMUM EXTENT PERMITTED BY LAW, FREESCALE EXPRESSLY
|
|
DISCLAIMS ANY WARRANTY FOR THE SOFTWARE. THE SOFTWARE IS PROVIDED AS
|
|
IS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING,
|
|
WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. YOU ASSUME THE ENTIRE RISK
|
|
ARISING OUT OF THE USE OR PERFORMANCE OF THE SOFTWARE, OR ANY SYSTEMS
|
|
YOU DESIGN USING THE SOFTWARE (IF ANY). NOTHING IN THIS AGREEMENT MAY BE
|
|
CONSTRUED AS A WARRANTY OR REPRESENTATION BY FREESCALE THAT THE SOFTWARE
|
|
OR ANY DERIVATIVE WORK DEVELOPED WITH OR INCORPORATING THE SOFTWARE
|
|
WILL BE FREE FROM INFRINGEMENT OF THE INTELLECTUAL PROPERTY RIGHTS OF
|
|
THIRD PARTIES.
|
|
|
|
INDEMNITY. You agree to fully defend and indemnify Freescale from any and
|
|
all claims, liabilities, and costs (including reasonable attorney's fees)
|
|
related to (1) your use (including your sublicensee's use, if permitted)
|
|
of the Software or (2) your violation of the terms and conditions of
|
|
this Agreement.
|
|
|
|
LIMITATION OF LIABILITY. IN NO EVENT WILL FREESCALE BE LIABLE, WHETHER
|
|
IN CONTRACT, TORT, OR OTHERWISE, FOR ANY INCIDENTAL, SPECIAL, INDIRECT,
|
|
CONSEQUENTIAL OR PUNITIVE DAMAGES, INCLUDING, BUT NOT LIMITED TO,
|
|
DAMAGES FOR ANY LOSS OF USE, LOSS OF TIME, INCONVENIENCE, COMMERCIAL
|
|
LOSS, OR LOST PROFITS, SAVINGS, OR REVENUES TO THE FULL EXTENT SUCH MAY
|
|
BE DISCLAIMED BY LAW.
|
|
|
|
COMPLIANCE WITH LAWS; EXPORT RESTRICTIONS. This software may be subject
|
|
to the U.S. Export Regulations and/or the regulatory authority of the
|
|
country in which the download takes place. By downloading this software
|
|
you understand and agree to comply with all applicable export control
|
|
regulations when further transferring or exporting the software either
|
|
as downloaded or as integrated into other software or commodities.
|
|
|
|
GOVERNMENT USE. Use of the Software and any corresponding documentation,
|
|
if any, is provided with RESTRICTED RIGHTS. Use, duplication or
|
|
disclosure by the Government is subject to restrictions as set forth in
|
|
subparagraph (c)(1)(ii) of The Rights in Technical Data and Computer
|
|
Software clause at DFARS 252.227-7013 or subparagraphs (c)(l) and
|
|
(2) of the Commercial Computer Software--Restricted Rights at 48 CFR
|
|
52.227-19, as applicable. Manufacturer is Freescale Semiconductor, Inc.,
|
|
6501 William Cannon Drive West, Austin, TX, 78735.
|
|
|
|
HIGH RISK ACTIVITIES. You acknowledge that the Software is not fault
|
|
tolerant and is not designed, manufactured or intended by Freescale for
|
|
incorporation into products intended for use or resale in on-line control
|
|
equipment in hazardous, dangerous to life or potentially life-threatening
|
|
environments requiring fail-safe performance, such as in the operation
|
|
of nuclear facilities, aircraft navigation or communication systems, air
|
|
traffic control, direct life support machines or weapons systems, in which
|
|
the failure of products could lead directly to death, personal injury
|
|
or severe physical or environmental damage (High Risk Activities). You
|
|
specifically represent and warrant that you will not use the Software
|
|
or any derivative work of the Software for High Risk Activities.
|
|
|
|
CHOICE OF LAW; VENUE; LIMITATIONS. You agree that the statutes and
|
|
laws of the United States and the State of Texas, USA, without regard
|
|
to conflicts of laws principles, will apply to all matters relating to
|
|
this Agreement or the Software, and you agree that any litigation will
|
|
be subject to the exclusive jurisdiction of the state or federal courts
|
|
in Texas, USA. You agree that regardless of any statute or law to the
|
|
contrary, any claim or cause of action arising out of or related to this
|
|
Agreement or the Software must be filed within one (1) year after such
|
|
claim or cause of action arose or be forever barred.
|
|
|
|
PRODUCT LABELING. You are not authorized to use any Freescale trademarks,
|
|
brand names, or logos.
|
|
|
|
ENTIRE AGREEMENT. This Agreement constitutes the entire agreement
|
|
between you and Freescale regarding the subject matter of this Agreement,
|
|
and supersedes all prior communications, negotiations, understandings,
|
|
agreements or representations, either written or oral, if any. This
|
|
Agreement may only be amended in written form, executed by you and
|
|
Freescale.
|
|
|
|
SEVERABILITY. If any provision of this Agreement is held for any reason
|
|
to be invalid or unenforceable, then the remaining provisions of this
|
|
Agreement will be unimpaired and, unless a modification or replacement
|
|
of the invalid or unenforceable provision is further held to deprive
|
|
you or Freescale of a material benefit, in which case the Agreement
|
|
will immediately terminate, the invalid or unenforceable provision will
|
|
be replaced with a provision that is valid and enforceable and that
|
|
comes closest to the intention underlying the invalid or unenforceable
|
|
provision.
|
|
|
|
NO WAIVER. The waiver by Freescale of any breach of any provision of
|
|
this Agreement will not operate or be construed as a waiver of any other
|
|
or a subsequent breach of the same or a different provision.
|
|
|
|
|
|
## JFFS2
|
|
|
|
The files in this directory and elsewhere which refer to this LICENCE
|
|
file are part of JFFS2, the Journalling Flash File System v2.
|
|
|
|
Copyright (c) 2001-2007 Red Hat, Inc. and others
|
|
|
|
JFFS2 is free software; you can redistribute it and/or modify it under
|
|
the terms of the GNU General Public License as published by the Free
|
|
Software Foundation; either version 2 or (at your option) any later
|
|
version.
|
|
|
|
JFFS2 is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with JFFS2; if not, write to the Free Software Foundation, Inc.,
|
|
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
|
|
|
As a special exception, if other files instantiate templates or use
|
|
macros or inline functions from these files, or you compile these
|
|
files and link them with other works to produce a work based on these
|
|
files, these files do not by themselves cause the resulting work to be
|
|
covered by the GNU General Public License. However the source code for
|
|
these files must still be made available in accordance with section (3)
|
|
of the GNU General Public License.
|
|
|
|
This exception does not invalidate any other reasons why a work based on
|
|
this file might be covered by the GNU General Public License.
|
|
|