From 13feca79b33a20ca40df68c7464d50ba7d26d246 Mon Sep 17 00:00:00 2001 From: Alex Bee Date: Sat, 11 Feb 2023 09:26:10 +0100 Subject: [PATCH] Rockchip: RK3288: Fix thermal_zone for gputemp --- projects/Rockchip/devices/RK3288/filesystem/usr/bin/gputemp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/Rockchip/devices/RK3288/filesystem/usr/bin/gputemp b/projects/Rockchip/devices/RK3288/filesystem/usr/bin/gputemp index 749c76be97..73d0115961 100755 --- a/projects/Rockchip/devices/RK3288/filesystem/usr/bin/gputemp +++ b/projects/Rockchip/devices/RK3288/filesystem/usr/bin/gputemp @@ -4,5 +4,5 @@ # Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv) # Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv) -TEMP="$(cat /sys/class/thermal/thermal_zone2/temp)" +TEMP="$(cat /sys/class/thermal/thermal_zone1/temp)" echo "$(( $TEMP / 1000 )) C"