mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 14:04:26 -04:00 
			
		
		
		
	Only reload hostname and timezone config on /etc/init.d/boot restart. Module loading and basic boot setup is only done during boot. Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com> SVN-Revision: 38670
		
			
				
	
	
		
			80 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh /etc/rc.common
 | |
| # Copyright (C) 2006-2011 OpenWrt.org
 | |
| 
 | |
| 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
 | |
| 	[ -f /proc/net/vlan/config ] && vconfig set_name_type DEV_PLUS_VID_NO_PAD
 | |
| 
 | |
| 	mkdir -p /var/run
 | |
| 	mkdir -p /var/log
 | |
| 	mkdir -p /var/lock
 | |
| 	mkdir -p /var/state
 | |
| 	mkdir -p /tmp/.uci
 | |
| 	chmod 0700 /tmp/.uci
 | |
| 	touch /var/log/wtmp
 | |
| 	touch /var/log/lastlog
 | |
| 	touch /tmp/resolv.conf.auto
 | |
| 	ln -sf /tmp/resolv.conf.auto /tmp/resolv.conf
 | |
| 	grep -q debugfs /proc/filesystems && mount -o noatime -t debugfs debugfs /sys/kernel/debug
 | |
| 	[ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe
 | |
| 
 | |
| 	/sbin/kmodloader
 | |
| 
 | |
| 	# allow wifi modules time to settle
 | |
| 	sleep 1
 | |
| 
 | |
| 	/sbin/wifi detect > /tmp/wireless.tmp
 | |
| 	[ -s /tmp/wireless.tmp ] && {
 | |
| 		cat /tmp/wireless.tmp >> /etc/config/wireless
 | |
| 	}
 | |
| 	rm -f /tmp/wireless.tmp
 | |
| 
 | |
| 	apply_uci_config
 | |
| 	
 | |
| 	# temporary hack until configd exists
 | |
| 	/sbin/reload_config
 | |
| 
 | |
| 	start
 | |
| 
 | |
| 	# create /dev/root if it doesn't exist
 | |
| 	[ -e /dev/root -o -h /dev/root ] || {
 | |
| 		rootdev=$(awk 'BEGIN { RS=" "; FS="="; } $1 == "root" { print $2 }' < /proc/cmdline)
 | |
| 		[ -n "$rootdev" ] && ln -s "$rootdev" /dev/root
 | |
| 	}
 | |
| }
 |