Use the values populated by the generic board detect function. The first compatible from the device tree source file will be the board name in userspace. The model property from the device tree source file will be the model name. Change the board name where used in the userspace and drop the target specific board detect, to use the generic one. Signed-off-by: Mathias Kresin <dev@kresin.me>master
parent
f0e1f69f39
commit
dcbbac55ed
@ -1,33 +0,0 @@ |
||||
#!/bin/sh |
||||
# |
||||
# Copyright (C) 2013 OpenWrt.org |
||||
# |
||||
|
||||
MPC85XX_BOARD_NAME= |
||||
MPC85XX_MODEL= |
||||
|
||||
mpc85xx_board_detect() { |
||||
local model |
||||
local name |
||||
|
||||
model=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /model/ {print $2}' /proc/cpuinfo) |
||||
|
||||
case "$model" in |
||||
*"HiveAP-330") |
||||
name="hiveap-330" |
||||
;; |
||||
*"TL-WDR4900 v1") |
||||
name="tl-wdr4900-v1" |
||||
;; |
||||
esac |
||||
|
||||
[ -z "$name" ] && name="unknown" |
||||
|
||||
[ -z "$MPC85XX_BOARD_NAME" ] && MPC85XX_BOARD_NAME="$name" |
||||
[ -z "$MPC85XX_MODEL" ] && MPC85XX_MODEL="$model" |
||||
|
||||
[ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/" |
||||
|
||||
echo "$MPC85XX_BOARD_NAME" > /tmp/sysinfo/board_name |
||||
echo "$MPC85XX_MODEL" > /tmp/sysinfo/model |
||||
} |
@ -1,9 +0,0 @@ |
||||
#!/bin/sh |
||||
|
||||
do_mpc85xx() { |
||||
. /lib/mpc85xx.sh |
||||
|
||||
mpc85xx_board_detect |
||||
} |
||||
|
||||
boot_hook_add preinit_main do_mpc85xx |
Loading…
Reference in new issue