Browse Source

Clifford Wolf:


			
			
				rocklinux
			
			
		
Clifford Wolf 18 years ago
parent
commit
c4d23b56ff
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      package/base/sysfiles/system.init

+ 6
- 2
package/base/sysfiles/system.init

@ -28,8 +28,12 @@
main_begin
block_begin(start, `Mounting /proc and /sys.')
check(`mount -n -t proc proc /proc')
check(`mount -n -t sysfs sysfs /sys')
if [ ! -e /proc/self ]; then
check(`mount -n -t proc proc /proc')
fi
if [ ! -e /sys/kernel ]; then
check(`mount -n -t sysfs sysfs /sys')
fi
dnl
block_split(`Setting kernel clock to local time.')
[ -f /etc/conf/clock ] && . /etc/conf/clock

Loading…
Cancel
Save