mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
Add support for PowerPC architecture
Related to https://github.com/pi-hole/FTL/pull/88
This commit is contained in:
parent
26fcb1b2a0
commit
5b472ff67c
1 changed files with 4 additions and 0 deletions
|
@ -1265,6 +1265,10 @@ FTLdetect() {
|
|||
echo "::: Detected ARM architecture"
|
||||
binary="pihole-FTL-arm-linux-gnueabi"
|
||||
fi
|
||||
elif [[ $machine == ppc ]]; then
|
||||
# PowerPC
|
||||
echo "::: Detected PowerPC architecture"
|
||||
binary="pihole-FTL-powerpc-linux-gnu"
|
||||
elif [[ $machine == x86_64 ]]; then
|
||||
# 64bit
|
||||
echo "::: Detected x86_64 architecture"
|
||||
|
|
Loading…
Reference in a new issue