2
0
forked from Ivasoft/openwrt

imx6: fix platform checking

Fix platform checking when configuring networks and when doing sysupgrade.

Signed-off-by: Pushpal Sidhu <psidhu@gateworks.com>

SVN-Revision: 47168
This commit is contained in:
Luka Perkov
2015-10-10 12:35:02 +00:00
parent c2425ac649
commit 9c7336e0f9
2 changed files with 8 additions and 8 deletions

View File

@@ -15,16 +15,16 @@ board=$(imx6_board_name)
ucidef_set_interface_loopback
case "$board" in
"gw51xx" |\
"gw52xx")
*gw51xx |\
*gw52xx)
ucidef_set_interface_lan 'eth0'
;;
"gw53xx" |\
"gw54xx" |\
"gw552x")
*gw53xx |\
*gw54xx |\
*gw552x)
ucidef_set_interfaces_lan_wan 'eth0' 'eth1'
;;
"wandboard")
*wandboard)
ucidef_set_interface_wan 'eth0'
;;
esac