mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-08 00:57:07 +08:00
19 lines
285 B
Bash
Executable File
19 lines
285 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2017 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
|
|
board_config_update
|
|
|
|
ucidef_set_interface_lan 'eth0' 'dhcp'
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|