From 9ea8b7ee6c318cc47bf03421d7888e75c37c9843 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 10 Dec 2024 14:39:07 +0100 Subject: [PATCH] Inverse logic https://github.com/Nachtzuster/BirdNET-Pi/issues/251#issuecomment-2531452580 --- birdnet-pi/rootfs/etc/cont-init.d/01-oldcpu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/birdnet-pi/rootfs/etc/cont-init.d/01-oldcpu.sh b/birdnet-pi/rootfs/etc/cont-init.d/01-oldcpu.sh index 1d8a4f671..3541a8bc4 100644 --- a/birdnet-pi/rootfs/etc/cont-init.d/01-oldcpu.sh +++ b/birdnet-pi/rootfs/etc/cont-init.d/01-oldcpu.sh @@ -3,7 +3,7 @@ set -e # Compensate for old cpu without avx2 -if lscpu | grep -q avx2; then +if ! lscpu | grep -q avx2; then bashio::log.warning "NON SUPPORTED CPU DETECTED" bashio::log.warning "Your cpu doesn't support avx2, the analyzer service will likely won't work" bashio::log.warning "Trying to install tensorflow instead of tflite_runtime instead"