aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/init.d/boot
diff options
context:
space:
mode:
Diffstat (limited to 'package/base-files/files/etc/init.d/boot')
-rwxr-xr-xpackage/base-files/files/etc/init.d/boot33
1 files changed, 1 insertions, 32 deletions
diff --git a/package/base-files/files/etc/init.d/boot b/package/base-files/files/etc/init.d/boot
index 8b5455d8bc..45cb4a2596 100755
--- a/package/base-files/files/etc/init.d/boot
+++ b/package/base-files/files/etc/init.d/boot
@@ -4,37 +4,6 @@
START=10
STOP=98
-system_config() {
- local cfg="$1"
-
- local hostname conloglevel buffersize timezone zonename
-
- config_get hostname "$cfg" hostname 'OpenWrt'
- echo "$hostname" > /proc/sys/kernel/hostname
-
- config_get conloglevel "$cfg" conloglevel
- config_get buffersize "$cfg" buffersize
- [ -z "$conloglevel" -a -z "$buffersize" ] || dmesg ${conloglevel:+-n $conloglevel} ${buffersize:+-s $buffersize}
-
- config_get timezone "$cfg" timezone 'UTC'
- echo "$timezone" > /tmp/TZ
-
- config_get zonename "$cfg" zonename
- [ -n "$zonename" ] && [ -f "/usr/share/zoneinfo/$zonename" ] && ln -s "/usr/share/zoneinfo/$zonename" /tmp/localtime
-
- # apply timezone to kernel
- date -k
-}
-
-apply_uci_config() {
- sh -c '. /lib/functions.sh; include /lib/config; uci_apply_defaults'
-}
-
-start() {
- config_load system
- config_foreach system_config system
-}
-
boot() {
[ -f /proc/mounts ] || /sbin/mount_root
[ -f /proc/jffs2_bbc ] && echo "S" > /proc/jffs2_bbc
@@ -64,7 +33,7 @@ boot() {
}
rm -f /tmp/wireless.tmp
- apply_uci_config
+ sh -c '. /lib/functions.sh; include /lib/config; uci_apply_defaults'
# temporary hack until configd exists
/sbin/reload_config