diff options
author | Florian Eckert <fe@dev.tdt.de> | 2023-08-07 11:15:28 +0200 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2023-12-05 13:38:41 +0100 |
commit | fd9d1e90b49cdcb1ebd53a0b4e1eaa4353a974f7 (patch) | |
tree | 55d9e0febc6a66d8c2bf1f139df848a79b3d74f1 /target/sdk/Makefile | |
parent | 5fec4d6cd52a8848d13b29df1f8a679bd59b98e5 (diff) |
tools: add tmon package
Add the 'tmon' packages. This is as a tool to help visualize,
tune, and test the complex thermal subsystem.
We get a compile warning for the tool that the printf format does not
fit. This commit contains a patch that fixes this warning. This patch
has also been sent upstream to the Linux kernel [1].
Links:
[1] https://lore.kernel.org/all/20231204141335.2798194-1-fe@dev.tdt.de/
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Diffstat (limited to 'target/sdk/Makefile')
-rw-r--r-- | target/sdk/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/sdk/Makefile b/target/sdk/Makefile index 243d58bbaf..fbe35170c1 100644 --- a/target/sdk/Makefile +++ b/target/sdk/Makefile @@ -89,6 +89,7 @@ USERSPACE_UTILS_FILES := \ tools/power/cpupower \ tools/scripts \ tools/spi \ + tools/thermal/tmon \ tools/usb/usbip USERSPACE_FILES := $(patsubst $(TOPDIR)/%,%,$(wildcard $(addprefix $(LINUX_DIR)/,$(USERSPACE_UTILS_FILES)))) |