From 9dc4407afced8dae307d82969d9ccff92a054ded Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Fri, 19 Nov 2021 09:47:45 +0300 Subject: [PATCH] selfcheck.py: make not finding vcgencmd not a failure --- clover/src/selfcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clover/src/selfcheck.py b/clover/src/selfcheck.py index 8224a5d4..971f253e 100755 --- a/clover/src/selfcheck.py +++ b/clover/src/selfcheck.py @@ -755,7 +755,7 @@ def check_rpi_health(): # with some of the FLAGs OR'ed together output = subprocess.check_output(['vcgencmd', 'get_throttled']).decode() except OSError: - failure('could not call vcgencmd binary; not a Raspberry Pi?') + info('could not call vcgencmd binary; not a Raspberry Pi?') return throttle_mask = int(output.split('=')[1], base=16)