allow x86_64 for development purposes

This commit is contained in:
frederik
2024-02-19 15:54:02 +01:00
parent 15aaedbacc
commit e3b8cd134a
2 changed files with 4 additions and 8 deletions
+2 -4
View File
@@ -5,12 +5,10 @@ if [ "$EUID" == 0 ]
exit
fi
if [ "$(uname -m)" != "aarch64" ];then
if [ "$(uname -m)" != "aarch64" ] && [ "$(uname -m)" != "x86_64" ];then
echo "BirdNET-Pi requires a 64-bit OS.
It looks like your operating system is using $(uname -m),
but would need to be aarch64.
Please take a look at https://birdnetwiki.pmcgui.xyz for more
information"
but would need to be aarch64."
exit 1
fi