From: Jo-Philipp Wich Date: Fri, 29 May 2009 22:54:47 +0000 (+0000) Subject: modules/admin-core: extend network schema to cover stp option X-Git-Tag: 0.9.0~282 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=3490fba80564a87a0a77c05b973088e45e64888d;p=project%2Fluci.git modules/admin-core: extend network schema to cover stp option --- diff --git a/modules/admin-core/root/lib/uci/schema/default/network b/modules/admin-core/root/lib/uci/schema/default/network index 0ea439d2d1..ee58b7a41f 100644 --- a/modules/admin-core/root/lib/uci/schema/default/network +++ b/modules/admin-core/root/lib/uci/schema/default/network @@ -339,6 +339,13 @@ config enum option variable 'network.interface.type' option value 'bridge' option title 'This is a bridge interface' + +config variable + option name 'stp' + option title 'Enable STP' + option section 'network.interface.stp' + option datatype 'boolean' + option depends 'type=bridge'