blob: 470d1b1bd0d5a3e30c0f1da599ed2783e8a21a56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# SPDX-License-Identifier: GPL-2.0-or-later
. /lib/functions/uci-defaults.sh
board_config_update
case "$(board_name)" in
huawei,hg556a-b)
ucidef_set_interface_lan "eth0"
;;
esac
board_config_flush
exit 0
|