base-files: uci-defaults-new: remove reset/enable args of ucidef_add_switch()
Out of 69 switch definitions, only 3 pass something different than "1" as values for reset and enable, with one of those three being invalid. This change ... * removes the reset and enable arguments from ucidef_add_switch() * unconditionally writes reset:1 and enable:1 to JSON * converts the three users of nonstandard values to ucidef_add_switch_attr() Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 47720
This commit is contained in:
@@ -52,7 +52,8 @@ ramips_setup_interfaces()
|
||||
w150m|\
|
||||
wnce2001|\
|
||||
zte-q7)
|
||||
ucidef_add_switch "switch0" "1" "0"
|
||||
ucidef_add_switch "switch0"
|
||||
ucidef_add_switch_attr "switch0" "reset" "false"
|
||||
ucidef_set_interface_lan "eth0"
|
||||
;;
|
||||
3g-6200nl|\
|
||||
@@ -186,7 +187,8 @@ ramips_setup_interfaces()
|
||||
"1:lan" "2:lan" "3:lan" "4:lan" "5:lan" "0:wan" "6@eth0"
|
||||
;;
|
||||
m2m)
|
||||
ucidef_add_switch "switch0" "4"
|
||||
ucidef_add_switch "switch0"
|
||||
ucidef_add_switch_attr "switch0" "reset" "false"
|
||||
ucidef_set_interface_lan "eth0"
|
||||
;;
|
||||
mlwg2|\
|
||||
|
||||
Reference in New Issue
Block a user