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 exit
fi fi
if [ "$(uname -m)" != "aarch64" ];then if [ "$(uname -m)" != "aarch64" ] && [ "$(uname -m)" != "x86_64" ];then
echo "BirdNET-Pi requires a 64-bit OS. echo "BirdNET-Pi requires a 64-bit OS.
It looks like your operating system is using $(uname -m), It looks like your operating system is using $(uname -m),
but would need to be aarch64. but would need to be aarch64."
Please take a look at https://birdnetwiki.pmcgui.xyz for more
information"
exit 1 exit 1
fi fi
+2 -4
View File
@@ -12,12 +12,10 @@ git log -n 1 --pretty=oneline --no-color --decorate
source install_helpers.sh source install_helpers.sh
if [ "$(uname -m)" != "aarch64" ];then if [ "$(uname -m)" != "aarch64" ] && [ "$(uname -m)" != "x86_64" ];then
echo "BirdNET-Pi requires a 64-bit OS. echo "BirdNET-Pi requires a 64-bit OS.
It looks like your operating system is using $(uname -m), It looks like your operating system is using $(uname -m),
but would need to be aarch64. but would need to be aarch64."
Please take a look at https://birdnetwiki.pmcgui.xyz for more
information"
exit 1 exit 1
fi fi