瀏覽代碼

malta: use default OpenWrt network configuration

Currently malta configures the first Ethernet device as WAN interface.
If it finds a second one it will configure it as LAN.

This commit reverses it to match armvirt and x86. If there is only one
network device it will be configured as LAN device now. If we find two
network devices the 2. one will be WAN.

If no board.d network configuration is given it will be configured in
package/base-files/files/etc/board.d/99-default_network

Signed-off-by: Hauke Mehrtens <[email protected]>
[minor typos]
Signed-off-by: Paul Spooren <[email protected]>
Hauke Mehrtens 3 年之前
父節點
當前提交
fb1ba92202
共有 1 個文件被更改,包括 0 次插入13 次删除
  1. 0 13
      target/linux/malta/base-files/etc/board.d/02_network

+ 0 - 13
target/linux/malta/base-files/etc/board.d/02_network

@@ -1,13 +0,0 @@
-
-. /lib/functions/uci-defaults.sh
-
-board_config_update
-
-ucidef_set_interface_wan "eth0"
-if [ -d "/sys/class/net/eth1" ]; then
-	ucidef_set_interface_lan "eth1"
-fi
-
-board_config_flush
-
-exit 0