octeontx: use the generic board detection
Use the generic board detection based on the device tree compatible string instead of a target specific one. Signed-off-by: Mathias Kresin <dev@kresin.me>
This commit is contained in:
parent
2d8eeca842
commit
50641a0f9a
2 changed files with 1 additions and 45 deletions
|
@ -4,9 +4,8 @@
|
|||
#
|
||||
|
||||
. ./lib/functions/uci-defaults.sh
|
||||
. ./lib/octeontx.sh
|
||||
|
||||
board=$(octeontx_board_name)
|
||||
board=$(board_name)
|
||||
|
||||
board_config_update
|
||||
|
||||
|
|
|
@ -1,43 +0,0 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2018 OpenWrt.org
|
||||
#
|
||||
|
||||
octeontx_board_detect() {
|
||||
local machine
|
||||
local name
|
||||
|
||||
machine=$(cat /proc/device-tree/model)
|
||||
board=$(cat /proc/device-tree/board)
|
||||
|
||||
case "$machine" in
|
||||
"Cavium ThunderX CN81XX board")
|
||||
name="cn81xx"
|
||||
;;
|
||||
|
||||
*)
|
||||
name="generic"
|
||||
;;
|
||||
esac
|
||||
|
||||
case "$board" in
|
||||
GW630*)
|
||||
name="gw630x"
|
||||
;;
|
||||
esac
|
||||
|
||||
[ -e "/tmp/sysinfo" ] || mkdir -p "/tmp/sysinfo"
|
||||
|
||||
echo "$name" > /tmp/sysinfo/board_name
|
||||
echo "$machine" > /tmp/sysinfo/model
|
||||
}
|
||||
|
||||
octeontx_board_name() {
|
||||
local name
|
||||
|
||||
[ -f /tmp/sysinfo/board_name ] || octeontx_board_detect
|
||||
[ -f /tmp/sysinfo/board_name ] && name=$(cat /tmp/sysinfo/board_name)
|
||||
[ -z "$name" ] && name="unknown"
|
||||
|
||||
echo "$name"
|
||||
}
|
Loading…
Reference in a new issue