License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 15:07:57 +01:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2015-04-18 22:34:39 +02:00
|
|
|
# Some of the tools (perf) use same make variables
|
|
|
|
# as in kernel build.
|
|
|
|
export srctree=
|
|
|
|
export objtree=
|
|
|
|
|
2012-04-11 18:36:16 +02:00
|
|
|
include scripts/Makefile.include
|
|
|
|
|
2012-04-11 18:36:17 +02:00
|
|
|
help:
|
|
|
|
@echo 'Possible targets:'
|
|
|
|
@echo ''
|
2015-12-18 13:39:15 +01:00
|
|
|
@echo ' acpi - ACPI tools'
|
2019-06-28 19:22:09 +02:00
|
|
|
@echo ' bpf - misc BPF tools'
|
2015-12-18 13:39:15 +01:00
|
|
|
@echo ' cgroup - cgroup tools'
|
|
|
|
@echo ' cpupower - a tool for all things x86 CPU power'
|
2019-01-08 20:40:06 +01:00
|
|
|
@echo ' debugging - tools for debugging'
|
2015-12-18 13:39:15 +01:00
|
|
|
@echo ' firewire - the userspace part of nosy, an IEEE-1394 traffic sniffer'
|
2018-10-17 20:27:18 +02:00
|
|
|
@echo ' firmware - Firmware tools'
|
2015-12-18 13:39:15 +01:00
|
|
|
@echo ' freefall - laptop accelerometer program for disk protection'
|
2015-10-21 15:45:54 +02:00
|
|
|
@echo ' gpio - GPIO tools'
|
2015-12-18 13:39:15 +01:00
|
|
|
@echo ' hv - tools used when in Hyper-V clients'
|
|
|
|
@echo ' iio - IIO tools'
|
2019-06-30 19:14:08 +02:00
|
|
|
@echo ' intel-speed-select - Intel Speed Select tool'
|
2016-05-18 13:26:21 +02:00
|
|
|
@echo ' kvm_stat - top-like utility for displaying kvm statistics'
|
2016-09-16 21:16:50 +02:00
|
|
|
@echo ' leds - LEDs tools'
|
2017-05-25 14:58:44 +02:00
|
|
|
@echo ' liblockdep - user-space wrapper for kernel locking-validator'
|
2019-06-28 19:22:09 +02:00
|
|
|
@echo ' objtool - an ELF object analysis tool'
|
2018-08-23 13:55:15 +02:00
|
|
|
@echo ' pci - PCI tools'
|
2015-12-18 13:39:15 +01:00
|
|
|
@echo ' perf - Linux performance measurement and analysis tool'
|
|
|
|
@echo ' selftests - various kernel selftests'
|
2016-01-14 20:39:09 +01:00
|
|
|
@echo ' spi - spi tools'
|
2015-12-18 13:39:15 +01:00
|
|
|
@echo ' tmon - thermal monitoring and tuning tool'
|
|
|
|
@echo ' turbostat - Intel CPU idle stats and freq reporting tool'
|
|
|
|
@echo ' usb - USB testing tools'
|
|
|
|
@echo ' virtio - vhost test module'
|
|
|
|
@echo ' vm - misc vm tools'
|
2017-11-01 20:25:37 +01:00
|
|
|
@echo ' wmi - WMI interface examples'
|
2012-04-11 18:36:17 +02:00
|
|
|
@echo ' x86_energy_perf_policy - Intel energy policy tool'
|
|
|
|
@echo ''
|
2012-04-11 18:36:18 +02:00
|
|
|
@echo 'You can do:'
|
2013-01-29 11:48:11 +01:00
|
|
|
@echo ' $$ make -C tools/ <tool>_install'
|
2012-04-11 18:36:18 +02:00
|
|
|
@echo ''
|
|
|
|
@echo ' from the kernel command line to build and install one of'
|
|
|
|
@echo ' the tools above'
|
|
|
|
@echo ''
|
2015-11-11 23:25:34 +01:00
|
|
|
@echo ' $$ make tools/all'
|
|
|
|
@echo ''
|
|
|
|
@echo ' builds all tools.'
|
|
|
|
@echo ''
|
2012-04-11 18:36:18 +02:00
|
|
|
@echo ' $$ make tools/install'
|
|
|
|
@echo ''
|
|
|
|
@echo ' installs all tools.'
|
|
|
|
@echo ''
|
2012-04-11 18:36:17 +02:00
|
|
|
@echo 'Cleaning targets:'
|
|
|
|
@echo ''
|
|
|
|
@echo ' all of the above with the "_clean" string appended cleans'
|
|
|
|
@echo ' the respective build directory.'
|
|
|
|
@echo ' clean: a summary clean target to clean _all_ folders'
|
|
|
|
|
2014-01-15 05:04:17 +01:00
|
|
|
acpi: FORCE
|
|
|
|
$(call descend,power/$@)
|
|
|
|
|
2012-04-11 18:36:16 +02:00
|
|
|
cpupower: FORCE
|
2012-11-05 16:15:24 +01:00
|
|
|
$(call descend,power/$@)
|
2012-04-11 18:36:16 +02:00
|
|
|
|
2019-01-09 00:38:36 +01:00
|
|
|
cgroup firewire hv guest spi usb virtio vm bpf iio gpio objtool leds wmi pci firmware debugging: FORCE
|
2013-02-20 16:32:30 +01:00
|
|
|
$(call descend,$@)
|
|
|
|
|
2014-05-08 19:34:01 +02:00
|
|
|
liblockdep: FORCE
|
|
|
|
$(call descend,lib/lockdep)
|
|
|
|
|
2015-04-18 22:34:38 +02:00
|
|
|
libapi: FORCE
|
2013-12-09 17:14:23 +01:00
|
|
|
$(call descend,lib/api)
|
2013-02-20 16:32:30 +01:00
|
|
|
|
2015-04-18 22:34:39 +02:00
|
|
|
# The perf build does not follow the descend function setup,
|
|
|
|
# invoking it via it's own make rule.
|
|
|
|
PERF_O = $(if $(O),$(O)/tools/perf,)
|
|
|
|
|
2015-04-18 22:34:38 +02:00
|
|
|
perf: FORCE
|
2015-04-18 22:34:39 +02:00
|
|
|
$(Q)mkdir -p $(PERF_O) .
|
|
|
|
$(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
|
2012-04-11 18:36:16 +02:00
|
|
|
|
|
|
|
selftests: FORCE
|
2012-11-05 16:15:24 +01:00
|
|
|
$(call descend,testing/$@)
|
2012-04-11 18:36:16 +02:00
|
|
|
|
2019-06-30 19:14:08 +02:00
|
|
|
turbostat x86_energy_perf_policy intel-speed-select: FORCE
|
2012-11-05 16:15:24 +01:00
|
|
|
$(call descend,power/x86/$@)
|
2012-04-11 18:36:16 +02:00
|
|
|
|
tools/thermal: Introduce tmon, a tool for thermal subsystem
Increasingly, Linux is running on thermally constrained devices. The simple
thermal relationship between processor and fan has become past for modern
computers.
As hardware vendors cope with the thermal constraints on their products,
more sensors are added, new cooling capabilities are introduced. The
complexity of the thermal relationship can grow exponentially among cooling
devices, zones, sensors, and trip points. They can also change dynamically.
To expose such relationship to the userspace, Linux generic thermal layer
introduced sysfs entry at /sys/class/thermal with a matrix of symbolic
links, trip point bindings, and device instances. To traverse such
matrix by hand is not a trivial task. Testing is also difficult in that
thermal conditions are often exception cases that hard to reach in
normal operations.
TMON is conceived as a tool to help visualize, tune, and test the
complex thermal subsystem.
Signed-off-by: Jacob Pan <jacob.jun.pan@linux.intel.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
2013-10-15 01:02:27 +02:00
|
|
|
tmon: FORCE
|
|
|
|
$(call descend,thermal/$@)
|
|
|
|
|
2015-06-06 15:42:28 +02:00
|
|
|
freefall: FORCE
|
|
|
|
$(call descend,laptop/$@)
|
|
|
|
|
2017-04-11 17:34:35 +02:00
|
|
|
kvm_stat: FORCE
|
|
|
|
$(call descend,kvm/$@)
|
|
|
|
|
2017-08-16 19:31:57 +02:00
|
|
|
all: acpi cgroup cpupower gpio hv firewire liblockdep \
|
2017-07-26 11:59:30 +02:00
|
|
|
perf selftests spi turbostat usb \
|
2017-10-05 05:10:03 +02:00
|
|
|
virtio vm bpf x86_energy_perf_policy \
|
2019-01-08 20:40:06 +01:00
|
|
|
tmon freefall iio objtool kvm_stat wmi \
|
|
|
|
pci debugging
|
2015-11-11 23:25:34 +01:00
|
|
|
|
2014-01-15 05:04:17 +01:00
|
|
|
acpi_install:
|
|
|
|
$(call descend,power/$(@:_install=),install)
|
|
|
|
|
2012-04-11 18:36:16 +02:00
|
|
|
cpupower_install:
|
2012-11-05 16:15:24 +01:00
|
|
|
$(call descend,power/$(@:_install=),install)
|
2012-04-11 18:36:16 +02:00
|
|
|
|
2019-01-08 20:40:06 +01:00
|
|
|
cgroup_install firewire_install gpio_install hv_install iio_install perf_install spi_install usb_install virtio_install vm_install bpf_install objtool_install wmi_install pci_install debugging_install:
|
2012-11-05 16:15:24 +01:00
|
|
|
$(call descend,$(@:_install=),install)
|
2012-04-11 18:36:16 +02:00
|
|
|
|
2017-05-25 14:58:44 +02:00
|
|
|
liblockdep_install:
|
|
|
|
$(call descend,lib/lockdep,install)
|
|
|
|
|
2012-04-11 18:36:16 +02:00
|
|
|
selftests_install:
|
2015-11-17 22:54:19 +01:00
|
|
|
$(call descend,testing/$(@:_install=),install)
|
2012-04-11 18:36:16 +02:00
|
|
|
|
2019-06-30 19:14:08 +02:00
|
|
|
turbostat_install x86_energy_perf_policy_install intel-speed-select_install:
|
2012-11-05 16:15:24 +01:00
|
|
|
$(call descend,power/x86/$(@:_install=),install)
|
2012-04-11 18:36:16 +02:00
|
|
|
|
tools/thermal: Introduce tmon, a tool for thermal subsystem
Increasingly, Linux is running on thermally constrained devices. The simple
thermal relationship between processor and fan has become past for modern
computers.
As hardware vendors cope with the thermal constraints on their products,
more sensors are added, new cooling capabilities are introduced. The
complexity of the thermal relationship can grow exponentially among cooling
devices, zones, sensors, and trip points. They can also change dynamically.
To expose such relationship to the userspace, Linux generic thermal layer
introduced sysfs entry at /sys/class/thermal with a matrix of symbolic
links, trip point bindings, and device instances. To traverse such
matrix by hand is not a trivial task. Testing is also difficult in that
thermal conditions are often exception cases that hard to reach in
normal operations.
TMON is conceived as a tool to help visualize, tune, and test the
complex thermal subsystem.
Signed-off-by: Jacob Pan <jacob.jun.pan@linux.intel.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
2013-10-15 01:02:27 +02:00
|
|
|
tmon_install:
|
|
|
|
$(call descend,thermal/$(@:_install=),install)
|
|
|
|
|
2015-06-06 15:42:28 +02:00
|
|
|
freefall_install:
|
|
|
|
$(call descend,laptop/$(@:_install=),install)
|
|
|
|
|
2016-05-18 13:26:21 +02:00
|
|
|
kvm_stat_install:
|
|
|
|
$(call descend,kvm/$(@:_install=),install)
|
|
|
|
|
2016-06-19 22:41:12 +02:00
|
|
|
install: acpi_install cgroup_install cpupower_install gpio_install \
|
Staging/IIO driver updates for 4.14-rc1
Here is the big staging and IIO driver update for 4.14-rc1.
Lots of staging driver fixes and cleanups, including some reorginizing
of the lustre header files to try to impose some sanity on what is, and
what is not, the uapi for that filesystem.
There are some tty core changes in here as well, as the speakup drivers
need them, and that's ok with me, they are sane and the speakup code is
getting nicer because of it.
There is also the addition of the obiligatory new wifi driver, just
because it has been a release or two since we added our last one...
Other than that, lots and lots of small coding style fixes, as usual.
All of these have been in linux-next for a while with no reported
issues.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-----BEGIN PGP SIGNATURE-----
iG0EABECAC0WIQT0tgzFv3jCIUoxPcsxR9QN2y37KQUCWa2AbA8cZ3JlZ0Brcm9h
aC5jb20ACgkQMUfUDdst+ymboACfUsNhw+cJlVb25J70NULkye3y1PAAoJ+Ayq30
ckkLGakZayKcYEx50ffH
=KJwg
-----END PGP SIGNATURE-----
Merge tag 'staging-4.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging
Pull staging/IIO driver updates from Greg KH:
"Here is the big staging and IIO driver update for 4.14-rc1.
Lots of staging driver fixes and cleanups, including some reorginizing
of the lustre header files to try to impose some sanity on what is,
and what is not, the uapi for that filesystem.
There are some tty core changes in here as well, as the speakup
drivers need them, and that's ok with me, they are sane and the
speakup code is getting nicer because of it.
There is also the addition of the obiligatory new wifi driver, just
because it has been a release or two since we added our last one...
Other than that, lots and lots of small coding style fixes, as usual.
All of these have been in linux-next for a while with no reported
issues"
* tag 'staging-4.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging: (612 commits)
staging:rtl8188eu:core Fix remove unneccessary else block
staging: typec: fusb302: make structure fusb302_psy_desc static
staging: unisys: visorbus: make two functions static
staging: fsl-dpaa2/eth: fix off-by-one FD ctrl bitmaks
staging: r8822be: Simplify deinit_priv()
staging: r8822be: Remove some dead code
staging: vboxvideo: Use CONFIG_DRM_KMS_FB_HELPER to check for fbdefio availability
staging:rtl8188eu Fix comparison to NULL
staging: rts5208: rename mmc_ddr_tunning_rx_cmd to mmc_ddr_tuning_rx_cmd
Staging: Pi433: style fix - tabs and spaces
staging: pi433: fix spelling mistake: "preample" -> "preamble"
staging:rtl8188eu:core Fix Code Indent
staging: typec: fusb302: Export current-limit through a power_supply class dev
staging: typec: fusb302: Add support for USB2 charger detection through extcon
staging: typec: fusb302: Use client->irq as irq if set
staging: typec: fusb302: Get max snk mv/ma/mw from device-properties
staging: typec: fusb302: Set max supply voltage to 5V
staging: typec: tcpm: Add get_current_limit tcpc_dev callback
staging:rtl8188eu Use __func__ instead of function name
staging: lustre: coding style fixes found by checkpatch.pl
...
2017-09-05 19:36:26 +02:00
|
|
|
hv_install firewire_install iio_install liblockdep_install \
|
2013-01-04 22:05:17 +01:00
|
|
|
perf_install selftests_install turbostat_install usb_install \
|
2017-10-05 05:10:03 +02:00
|
|
|
virtio_install vm_install bpf_install x86_energy_perf_policy_install \
|
2017-11-01 20:25:37 +01:00
|
|
|
tmon_install freefall_install objtool_install kvm_stat_install \
|
2019-06-30 19:14:08 +02:00
|
|
|
wmi_install pci_install debugging_install intel-speed-select_install
|
2012-04-11 18:36:16 +02:00
|
|
|
|
2014-01-15 05:04:17 +01:00
|
|
|
acpi_clean:
|
|
|
|
$(call descend,power/acpi,clean)
|
|
|
|
|
2012-04-11 18:36:16 +02:00
|
|
|
cpupower_clean:
|
2012-11-05 16:15:24 +01:00
|
|
|
$(call descend,power/cpupower,clean)
|
2012-04-11 18:36:16 +02:00
|
|
|
|
2019-01-09 00:38:36 +01:00
|
|
|
cgroup_clean hv_clean firewire_clean spi_clean usb_clean virtio_clean vm_clean wmi_clean bpf_clean iio_clean gpio_clean objtool_clean leds_clean pci_clean firmware_clean debugging_clean:
|
2013-02-20 16:32:30 +01:00
|
|
|
$(call descend,$(@:_clean=),clean)
|
|
|
|
|
2014-05-08 19:34:01 +02:00
|
|
|
liblockdep_clean:
|
|
|
|
$(call descend,lib/lockdep,clean)
|
|
|
|
|
2015-04-18 22:34:38 +02:00
|
|
|
libapi_clean:
|
2013-12-09 17:14:23 +01:00
|
|
|
$(call descend,lib/api,clean)
|
2013-02-20 16:32:30 +01:00
|
|
|
|
2016-01-11 11:54:48 +01:00
|
|
|
libbpf_clean:
|
|
|
|
$(call descend,lib/bpf,clean)
|
|
|
|
|
|
|
|
libsubcmd_clean:
|
|
|
|
$(call descend,lib/subcmd,clean)
|
|
|
|
|
2015-04-18 22:34:38 +02:00
|
|
|
perf_clean:
|
2016-04-25 22:17:18 +02:00
|
|
|
$(Q)mkdir -p $(PERF_O) .
|
|
|
|
$(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir= clean
|
2012-04-11 18:36:16 +02:00
|
|
|
|
|
|
|
selftests_clean:
|
2012-11-05 16:15:24 +01:00
|
|
|
$(call descend,testing/$(@:_clean=),clean)
|
2012-04-11 18:36:16 +02:00
|
|
|
|
2019-06-30 19:14:08 +02:00
|
|
|
turbostat_clean x86_energy_perf_policy_clean intel-speed-select_clean:
|
2012-11-05 16:15:24 +01:00
|
|
|
$(call descend,power/x86/$(@:_clean=),clean)
|
2012-04-11 18:36:16 +02:00
|
|
|
|
tools/thermal: Introduce tmon, a tool for thermal subsystem
Increasingly, Linux is running on thermally constrained devices. The simple
thermal relationship between processor and fan has become past for modern
computers.
As hardware vendors cope with the thermal constraints on their products,
more sensors are added, new cooling capabilities are introduced. The
complexity of the thermal relationship can grow exponentially among cooling
devices, zones, sensors, and trip points. They can also change dynamically.
To expose such relationship to the userspace, Linux generic thermal layer
introduced sysfs entry at /sys/class/thermal with a matrix of symbolic
links, trip point bindings, and device instances. To traverse such
matrix by hand is not a trivial task. Testing is also difficult in that
thermal conditions are often exception cases that hard to reach in
normal operations.
TMON is conceived as a tool to help visualize, tune, and test the
complex thermal subsystem.
Signed-off-by: Jacob Pan <jacob.jun.pan@linux.intel.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
2013-10-15 01:02:27 +02:00
|
|
|
tmon_clean:
|
|
|
|
$(call descend,thermal/tmon,clean)
|
|
|
|
|
2015-06-06 15:42:28 +02:00
|
|
|
freefall_clean:
|
|
|
|
$(call descend,laptop/freefall,clean)
|
|
|
|
|
2016-01-11 11:54:48 +01:00
|
|
|
build_clean:
|
|
|
|
$(call descend,build,clean)
|
|
|
|
|
2017-08-16 19:31:57 +02:00
|
|
|
clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean \
|
2015-11-18 23:30:37 +01:00
|
|
|
perf_clean selftests_clean turbostat_clean spi_clean usb_clean virtio_clean \
|
2017-10-05 05:10:03 +02:00
|
|
|
vm_clean bpf_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
|
2015-10-21 15:45:54 +02:00
|
|
|
freefall_clean build_clean libbpf_clean libsubcmd_clean liblockdep_clean \
|
2019-06-30 19:14:08 +02:00
|
|
|
gpio_clean objtool_clean leds_clean wmi_clean pci_clean firmware_clean debugging_clean \
|
|
|
|
intel-speed-select_clean
|
2012-04-11 18:36:16 +02:00
|
|
|
|
|
|
|
.PHONY: FORCE
|