Lines Matching +full:setup +full:- +full:x86_64
3 # SPDX-License-Identifier: MIT
37 # - if the file's full path is explicity listed in $tagged_patterns, then the
40 # - if the file's full path is explicitly listed in $untagged_patterns, then
43 # - if the filename matches a pattern in $tagged_patterns, and does not match a
46 # - otherwise, the file is untagged.
48 # The patterns do a simple glob-like match over the entire path relative to the
91 etc/init.d/zfs-import.in
92 etc/init.d/zfs-load-key.in
93 etc/init.d/zfs-mount.in
94 etc/init.d/zfs-share.in
95 etc/init.d/zfs-zed.in
96 etc/zfs/zfs-functions.in
97 scripts/objtool-wrapper.in
105 tests/zfs-tests/tests/functional/inheritance/README.config
106 tests/zfs-tests/tests/functional/inheritance/README.state
107 cmd/zed/zed.d/statechange-notify.sh
139 tests/zfs-tests/cmd/cp_files.c
140 tests/zfs-tests/cmd/zed_fd_spill-zedlet.c
141 tests/zfs-tests/tests/functional/tmpfile/tmpfile_001_pos.c
142 tests/zfs-tests/tests/functional/tmpfile/tmpfile_002_pos.c
143 tests/zfs-tests/tests/functional/tmpfile/tmpfile_003_pos.c
144 tests/zfs-tests/tests/functional/tmpfile/tmpfile_test.c
147 contrib/bpftrace/zfs-trace.sh
150 contrib/pyzfs/setup.py.in
153 scripts/man-dates.sh
156 scripts/zfs-helpers.sh
157 scripts/zfs-tests-color.sh
160 tests/zfs-tests/callbacks/zfs_failsafe.ksh
161 tests/zfs-tests/include/commands.cfg
162 tests/zfs-tests/include/tunables.cfg
163 tests/zfs-tests/include/zpool_script.shlib
164 tests/zfs-tests/tests/functional/mv_files/random_creation.ksh
172 'CDDL-1.0', '0BSD', 'BSD-2-Clause', 'BSD-3-Clause', 'MIT'
178 'module/os/linux/spl' => ['GPL-2.0-or-later'],
179 'include/os/linux/spl' => ['GPL-2.0-or-later'],
181 # Third-party code should keep it's original license
182 'module/zstd/lib' => ['BSD-3-Clause OR GPL-2.0-only'],
185 # lua/setjmp is platform-specific code sourced from various places
188 # Some of the fletcher modules are dual-licensed
190 ['BSD-2-Clause OR GPL-2.0-only', 'CDDL-1.0'],
192 'module/icp' => ['Apache-2.0', 'CDDL-1.0'],
193 'contrib/icp' => ['Apache-2.0', 'CDDL-1.0'],
195 # Python bindings are always Apache-2.0
196 'contrib/pyzfs' => ['Apache-2.0'],
213 # (project-specific) identifier to convey whatever meaning the project
214 # wishes it to. To cover OpenZFS' use of third-party code with a
218 …# https://github.com/spdx/old-wiki/blob/main/Pages/Legal%20Team/Decisions/Dealing%20with%20Publi…
219 # https://spdx.github.io/spdx-spec/v2.3/other-licensing-information-detected/
222 'LicenseRef-OpenZFS-ThirdParty-PublicDomain' => [qw(
233 'Brian-Gladman-3-Clause' => [qw(
234 module/icp/asm-x86_64/aes/aestab.h
235 module/icp/asm-x86_64/aes/aesopt.h
236 module/icp/asm-x86_64/aes/aeskey.c
237 module/icp/asm-x86_64/aes/aes_amd64.S
239 'OpenSSL-standalone' => [qw(
240 module/icp/asm-x86_64/aes/aes_aesni.S
242 'LGPL-2.1-or-later' => [qw(
246 # Legacy inclusions of BSD-2-Clause files in Linux SPL.
247 'BSD-2-Clause' => [qw(
249 module/os/linux/spl/spl-zone.c
254 'GPL-2.0-or-later' => [qw(
258 'CDDL-1.0' => [qw(
267 module/os/linux/spl/spl-procfs-list.c
268 module/os/linux/spl/spl-trace.c
284 # skip (now-)empty lines
299 $pat =~ s/\?/./g; # glob ? -> regex .
300 $pat =~ s/\*/.*/g; # glob * -> regex .*
316 if ($tagged_files->{$file}) {
317 delete $tagged_files->{$file};
322 if ($untagged_files->{$file}) {
323 delete $untagged_files->{$file};
342 my @git_files = sort grep { chomp } qx(git ls-tree --name-only -r HEAD);
346 # Ignore non-files. git can store other types of objects (submodule
348 next unless -f $file && ! -l $file;
359 $buf =~ m/\bSPDX-License-Identifier: ([A-Za-z0-9_\-\. ]+)$/smg;