lantiq: Tune the XWAY subtarget cflags
[openwrt/staging/mkresin.git] / package / uci / files / lib / config / uci.sh
index 8dcb92b9f87d2febb75efb01d36e7260cb3dc159..db84c8343e164c7ec021106eba1d74291e7f6817 100644 (file)
@@ -71,6 +71,11 @@ uci_set_state() {
        /sbin/uci ${UCI_CONFIG_DIR:+-c $UCI_CONFIG_DIR} -P /var/state set "$PACKAGE.$CONFIG${OPTION:+.$OPTION}=$VALUE"
 }
 
+uci_toggle_state() {
+       uci_revert_state "$1" "$2" "$3"
+       uci_set_state "$1" "$2" "$3" "$4"
+}
+
 uci_set() {
        local PACKAGE="$1"
        local CONFIG="$2"