diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-03-16 03:02:31 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-03-16 03:02:31 +0000 |
commit | 97276e7bf0218aed134c13c5db8f410a1ceebdea (patch) | |
tree | 392f9df044ecb4fd824e3915ec78f39a4e54746b /package/base-files/files/lib/config | |
parent | 0241b19768532635b521bf35f7746d4fc37ae91e (diff) | |
download | master-187ad058-97276e7bf0218aed134c13c5db8f410a1ceebdea.tar.gz master-187ad058-97276e7bf0218aed134c13c5db8f410a1ceebdea.tar.bz2 master-187ad058-97276e7bf0218aed134c13c5db8f410a1ceebdea.zip |
Add an 'Image Configuration' menu to menuconfig
Packages can export a list of config options with labels and data types
through the metadata. The selected config values will be exported to the
target filesystem in /etc/uci-defaults and applied on the first boot.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6572 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/lib/config')
-rw-r--r-- | package/base-files/files/lib/config/uci.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/base-files/files/lib/config/uci.sh b/package/base-files/files/lib/config/uci.sh index 43bb981cc6..e1571cc891 100644 --- a/package/base-files/files/lib/config/uci.sh +++ b/package/base-files/files/lib/config/uci.sh @@ -28,6 +28,17 @@ uci_load() { } } +uci_apply_defaults() {( + cd /etc/uci-defaults || return 0 + files="$(ls)" + [ -z "$files" ] && return 0 + mkdir -p /tmp/.uci + for file in $files; do + ( . "./$(basename $file)" ) && rm -f "$file" + done + uci commit +)} + uci_do_update() { local FILENAME="$1" local UPDATE="$2" |