imx6: fix platform checking
authorLuka Perkov <luka@openwrt.org>
Sat, 10 Oct 2015 12:35:02 +0000 (12:35 +0000)
committerLuka Perkov <luka@openwrt.org>
Sat, 10 Oct 2015 12:35:02 +0000 (12:35 +0000)
Fix platform checking when configuring networks and when doing sysupgrade.

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

target/linux/imx6/base-files/etc/uci-defaults/02_network
target/linux/imx6/base-files/lib/upgrade/platform.sh

index 0e60e22eb789e425db6eb17ee42430359eaf340a..bf830632e071881701a55244abe72b37033639e1 100644 (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
index c48e2c910ee83cf64b1f636cc6eb18d015c22177..0bbf110282e108edd7f5f9f590028f7693be5afc 100755 (executable)
@@ -8,7 +8,7 @@ platform_check_image() {
        local board=$(imx6_board_name)
 
        case "$board" in
-       gw54xx)
+       *gw5*)
                nand_do_platform_check $board $1
                return $?;
                ;;
@@ -22,7 +22,7 @@ platform_pre_upgrade() {
        local board=$(imx6_board_name)
 
        case "$board" in
-       gw54xx)
+       *gw5*)
                nand_do_upgrade "$1"
                ;;
        esac