mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-11 16:09:16 +00:00
Prevent printing error message during device detection
This commit is contained in:
parent
98a6743146
commit
487eaf2d6f
|
@ -15,7 +15,10 @@ IS_32_BIT=0
|
|||
IS_64_BIT=0
|
||||
DEVICE_TYPE="unknown"
|
||||
DEVICE_ARCH=$(uname -m) # Examples: armv7l aarch64 x86_64
|
||||
MODEL=$(tr -d '\0' < /proc/device-tree/model) || MODEL="unknown"
|
||||
MODEL="unknown"
|
||||
if [ -f /proc/device-tree/model ]; then
|
||||
MODEL=$(tr -d '\0' < /proc/device-tree/model) || MODEL="unknown"
|
||||
fi
|
||||
DEBIAN_VERSION=$(lsb_release -c -s) || DEBIAN_VERSION="unknown"
|
||||
uname -a | grep amd64 && IS_X86=1 && IS_64_BIT=1 || true
|
||||
if [[ $MODEL == *"Rock64"* ]]; then
|
||||
|
|
Loading…
Reference in New Issue
Block a user