ramips: fallback to generic board detect
Fallback to the generic board detection if no case for the current board exists. Signed-off-by: Mathias Kresin <dev@kresin.me>
This commit is contained in:
parent
224d4a96dd
commit
7d3ec5f833
4 changed files with 7 additions and 15 deletions
|
@ -114,7 +114,7 @@ ramips_setup_interfaces()
|
|||
youku-yk1|\
|
||||
zbt-ape522ii|\
|
||||
zbt-we1326|\
|
||||
zbt-we3526|\
|
||||
zbtlink,zbt-we3526|\
|
||||
zbt-we826-16M|\
|
||||
zbt-we826-32M|\
|
||||
zbt-wg2626|\
|
||||
|
|
|
@ -3,9 +3,6 @@
|
|||
# Copyright (C) 2010-2013 OpenWrt.org
|
||||
#
|
||||
|
||||
RAMIPS_BOARD_NAME=
|
||||
RAMIPS_MODEL=
|
||||
|
||||
ramips_board_detect() {
|
||||
local machine
|
||||
local name
|
||||
|
@ -733,18 +730,13 @@ ramips_board_detect() {
|
|||
*"YK1")
|
||||
name="youku-yk1"
|
||||
;;
|
||||
*)
|
||||
name="$(strings /proc/device-tree/compatible | head -1)"
|
||||
name="${name##*,}"
|
||||
name="${name:-generic}"
|
||||
;;
|
||||
esac
|
||||
|
||||
[ -z "$RAMIPS_BOARD_NAME" ] && RAMIPS_BOARD_NAME="$name"
|
||||
[ -z "$RAMIPS_MODEL" ] && RAMIPS_MODEL="$machine"
|
||||
# use generic board detect if no name is set
|
||||
[ -z "$name" ] && return
|
||||
|
||||
[ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/"
|
||||
|
||||
echo "$RAMIPS_BOARD_NAME" > /tmp/sysinfo/board_name
|
||||
echo "$RAMIPS_MODEL" > /tmp/sysinfo/model
|
||||
echo "$name" > /tmp/sysinfo/board_name
|
||||
echo "$machine" > /tmp/sysinfo/model
|
||||
}
|
||||
|
|
|
@ -202,7 +202,7 @@ platform_check_image() {
|
|||
zbt-wa05|\
|
||||
zbt-we1326|\
|
||||
zbt-we2026|\
|
||||
zbt-we3526|\
|
||||
zbtlink,zbt-we3526|\
|
||||
zbt-we826-16M|\
|
||||
zbt-we826-32M|\
|
||||
zbt-wg2626|\
|
||||
|
|
|
@ -332,7 +332,7 @@ TARGET_DEVICES += zbt-we1326
|
|||
define Device/zbt-we3526
|
||||
DTS := ZBT-WE3526
|
||||
IMAGE_SIZE := $(ralink_default_fw_size_16M)
|
||||
SUPPORTED_DEVICES += zbt-we3526
|
||||
SUPPORTED_DEVICES := zbtlink,zbt-we3526
|
||||
DEVICE_TITLE := ZBT WE3526
|
||||
DEVICE_PACKAGES := \
|
||||
kmod-sdhci-mt7620 kmod-mt7603 kmod-mt76x2 \
|
||||
|
|
Loading…
Reference in a new issue