aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/archs38/base-files/etc/board.d
diff options
context:
space:
mode:
authorAdrian Schmutzler <freifunk@adrianschmutzler.de>2020-07-18 16:02:06 +0200
committerAdrian Schmutzler <freifunk@adrianschmutzler.de>2020-07-22 18:28:09 +0200
commit3c190ef112979793cd0e2148c53c6208a642a463 (patch)
tree931f9fc392b7c291dec4598bd0804383802ec595 /target/linux/archs38/base-files/etc/board.d
parent9662b9d68826c4941f7691a81ac75b7a3cd64abd (diff)
downloadupstream-3c190ef112979793cd0e2148c53c6208a642a463.tar.gz
upstream-3c190ef112979793cd0e2148c53c6208a642a463.tar.bz2
upstream-3c190ef112979793cd0e2148c53c6208a642a463.zip
archs38: use generic 02_sysinfo
Currently archs38 sets a board name from compatible for no apparent reason. Just use the compatible directly instead. This theoretically removes a board name "generic" when no compatible was present, however, there is no case where this "generic" board name was actually used. This also fixes an issue where snps,axs103 would not have been properly detected anyway, as its case was not set up syntactically correct. Fixes: 73015c4cb378 ("linux: add support of Synopsys ARCHS38-based boards") Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target/linux/archs38/base-files/etc/board.d')
-rwxr-xr-xtarget/linux/archs38/base-files/etc/board.d/02_network3
1 files changed, 2 insertions, 1 deletions
diff --git a/target/linux/archs38/base-files/etc/board.d/02_network b/target/linux/archs38/base-files/etc/board.d/02_network
index 60a2602316..dcf33788c5 100755
--- a/target/linux/archs38/base-files/etc/board.d/02_network
+++ b/target/linux/archs38/base-files/etc/board.d/02_network
@@ -8,7 +8,8 @@
board_config_update
case "$(board_name)" in
-"arc-sdp"*|"arc-hsdk"*)
+snps,axs103|\
+snps,hsdk)
ucidef_set_interface_lan "eth0" "dhcp"
;;
esac