1/*
2 * BSD 3 Clause
3 * Copyright (c) 2016, Intel Corporation
4 * Copyright 2020 NXP
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:
9 *
10 * 1. Redistributions of source code must retain the above copyright notice,
11 * this list of conditions and the following disclaimer.
12 *
13 * 2. Redistributions in binary form must reproduce the above copyright notice,
14 * this list of conditions and the following disclaimer in the documentation
15 * and/or other materials provided with the distribution.
16 *
17 * 3. Neither the name of the copyright holder nor the names of its
18 * contributors may be used to endorse or promote products derived from this
19 * software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 */
33
34
35// Copyright (c) 2003-2014 Cadence Design Systems, Inc.
36//
37// Permission is hereby granted, free of charge, to any person obtaining
38// a copy of this software and associated documentation files (the
39// "Software"), to deal in the Software without restriction, including
40// without limitation the rights to use, copy, modify, merge, publish,
41// distribute, sublicense, and/or sell copies of the Software, and to
42// permit persons to whom the Software is furnished to do so, subject to
43// the following conditions:
44//
45// The above copyright notice and this permission notice shall be included
46// in all copies or substantial portions of the Software.
47//
48// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
49// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
50// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
51// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
52// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
53// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
54// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
55
56/*
57 * Copyright (c) 2006-2020 Cadence Design Systems, Inc.
58 *
59 * Permission is hereby granted, free of charge, to any person obtaining
60 * a copy of this software and associated documentation files (the
61 * "Software"), to deal in the Software without restriction, including
62 * without limitation the rights to use, copy, modify, merge, publish,
63 * distribute, sublicense, and/or sell copies of the Software, and to
64 * permit persons to whom the Software is furnished to do so, subject to
65 * the following conditions:
66 *
67 * The above copyright notice and this permission notice shall be included
68 * in all copies or substantial portions of the Software.
69 *
70 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
71 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
72 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
73 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
74 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
75 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
76 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
77 */
78
79Files with ISC licence:
80
81scripts/kconfig/alldefconfig.py
82scripts/kconfig/genconfig.py
83scripts/kconfig/kconfiglib.py
84scripts/kconfig/menuconfig.py
85scripts/kconfig/olddefconfig.py
86
87# Copyright 2011-2018 Ulf Magnusson
88
89# Permission to use, copy, modify, and/or distribute this software for any
90# purpose with or without fee is hereby granted, provided that the above
91# copyright notice and this permission notice appear in all copies.
92
93# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
94# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
95# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
96# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
97# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
98# AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
99# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
100
101