armvirt: add EFI support
[openwrt/staging/stintel.git] / target / linux / armvirt / base-files / etc / board.d / 02_network
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0-or-later
3
4 . /lib/functions/system.sh
5 . /lib/functions/uci-defaults.sh
6
7 board_config_update
8
9 case "$(board_name)" in
10 traverse,ten64)
11 ucidef_set_interface_lan "eth0 eth1 eth2 eth3"
12 ucidef_set_interface_wan "eth6"
13 ;;
14 esac
15
16 board_config_flush
17
18 exit 0