da86ee0b697a9182c27baeed7e843272aeb95960
[openwrt/staging/chunkeey.git] / target / linux / archs38 / base-files / etc / board.d / 02_network
1 #!/bin/sh
2 #
3 # Copyright (C) 2016 OpenWrt.org
4 #
5
6 . /lib/arc.sh
7 . /lib/functions/uci-defaults.sh
8
9 board_config_update
10
11 case "$( arc_board_name )" in
12 "arc-sdp"*)
13 ucidef_set_interface_lan "eth0" "dhcp"
14 ;;
15 esac
16
17 board_config_flush
18
19 exit 0