mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 13:34:13 +03:00
The upcoming HAOS 15.0 will use Hailo driver v4.20.1. The current dev has the older patch release (v4.20.0) staged for future versions, but since new Frigate build will be needed for future compatibility, it makes sense to sync at the latest one. Link: https://github.com/home-assistant/operating-system/pull/3922
15 lines
467 B
Bash
Executable File
15 lines
467 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
hailo_version="4.20.1"
|
|
|
|
if [[ "${TARGETARCH}" == "amd64" ]]; then
|
|
arch="x86_64"
|
|
elif [[ "${TARGETARCH}" == "arm64" ]]; then
|
|
arch="aarch64"
|
|
fi
|
|
|
|
wget -qO- "https://github.com/frigate-nvr/hailort/releases/download/v${hailo_version}/hailort-${TARGETARCH}.tar.gz" | tar -C / -xzf -
|
|
wget -P /wheels/ "https://github.com/frigate-nvr/hailort/releases/download/v${hailo_version}/hailort-${hailo_version}-cp311-cp311-linux_${arch}.whl"
|