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 | 2c62bddcfe20dc4691d13995bfe8c6e3d869d62f (patch) | |
tree | 1d41250dcc9cac9ed489fecf0f3eb42b8ecc69bb /package/base-files/files/etc | |
parent | 7b1a36cab40624bc52a6475633d06cfb4ba11527 (diff) | |
download | upstream-2c62bddcfe20dc4691d13995bfe8c6e3d869d62f.tar.gz upstream-2c62bddcfe20dc4691d13995bfe8c6e3d869d62f.tar.bz2 upstream-2c62bddcfe20dc4691d13995bfe8c6e3d869d62f.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.
SVN-Revision: 6572
Diffstat (limited to 'package/base-files/files/etc')
-rwxr-xr-x | package/base-files/files/etc/init.d/config | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/package/base-files/files/etc/init.d/config b/package/base-files/files/etc/init.d/config new file mode 100755 index 0000000000..2a14975035 --- /dev/null +++ b/package/base-files/files/etc/init.d/config @@ -0,0 +1,9 @@ +#!/bin/sh /etc/rc.common +# Copyright (C) 2006 OpenWrt.org + +START=15 + +start() { + include /lib/config + uci_apply_defaults +} |