Fix memory detection on OpenBSD
This commit is contained in:
parent
04ba1d2c3b
commit
f2be7906ec
2
fetch
2
fetch
|
@ -641,7 +641,7 @@ getmemory () {
|
||||||
memory="${memused}MB / ${memtotal}MB"
|
memory="${memused}MB / ${memtotal}MB"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"BSD")
|
"OpenBSd" | "BSD")
|
||||||
memtotal=$(dmesg | awk '/real mem/ {printf $5}')
|
memtotal=$(dmesg | awk '/real mem/ {printf $5}')
|
||||||
memtotal=${memtotal/\(/}
|
memtotal=${memtotal/\(/}
|
||||||
memtotal=${memtotal/MB\)/}
|
memtotal=${memtotal/MB\)/}
|
||||||
|
|
Reference in New Issue