mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-12 08:29:16 +00:00
Add IS_ARMBIAN variable
This commit is contained in:
parent
73867346f4
commit
46b042941e
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Device info
|
# Device info
|
||||||
|
IS_ARMBIAN=0
|
||||||
IS_ROCK64=0
|
IS_ROCK64=0
|
||||||
IS_ROCKPRO64=0
|
IS_ROCKPRO64=0
|
||||||
IS_RASPI=0
|
IS_RASPI=0
|
||||||
|
@ -11,8 +12,10 @@ DEVICE_TYPE="unknown"
|
||||||
MODEL=$(cat /proc/device-tree/model) || MODEL="unknown"
|
MODEL=$(cat /proc/device-tree/model) || MODEL="unknown"
|
||||||
uname -a | grep amd64 && IS_X86=1 || true
|
uname -a | grep amd64 && IS_X86=1 || true
|
||||||
if [[ $MODEL == *"Rock64"* ]]; then
|
if [[ $MODEL == *"Rock64"* ]]; then
|
||||||
|
IS_ARMBIAN=1
|
||||||
IS_ROCK64=1
|
IS_ROCK64=1
|
||||||
elif [[ $MODEL == *"RockPro64"* ]]; then
|
elif [[ $MODEL == *"RockPro64"* ]]; then
|
||||||
|
IS_ARMBIAN=1
|
||||||
IS_ROCKPRO64=1
|
IS_ROCKPRO64=1
|
||||||
elif [[ $MODEL == *"Raspberry Pi 3"* ]]; then
|
elif [[ $MODEL == *"Raspberry Pi 3"* ]]; then
|
||||||
IS_RASPI=1
|
IS_RASPI=1
|
||||||
|
|
Loading…
Reference in New Issue
Block a user