remove memleak patch because of issues with premature freeing of memory - i will...
[openwrt.git] / package / base-files / files / etc / functions.sh
index 69af187..ef28015 100755 (executable)
@@ -217,3 +217,9 @@ jffs2_mark_erase() {
        }
        echo -e "\xde\xad\xc0\xde" | mtd -qq write - "$1"
 }
+
+uci_set_default() {
+       local PACKAGE="$1"
+       [ -e "/etc/config/$1" ] && return 0
+       cat > "/etc/config/$1"
+}
This page took 0.020267 seconds and 4 git commands to generate.