Subversion Repository

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2 - (show annotations)
Sun Oct 4 17:28:46 2009 UTC (3 years, 7 months ago) by cjg
File size: 518 byte(s)
first commit
1 #!/bin/sh
2 #
3 # /etc/rc: system boot script
4 #
5
6 echo "The system is coming up. Please wait."
7
8 # Start udev
9 /bin/mount -n -t proc none /proc
10 /bin/mount -n -t sysfs none /sys
11 /sbin/start_udev
12 #/sbin/udevd --daemon
13
14 # Mount filesystems
15 /bin/mount -n -a &> /dev/null
16
17 # Create /tmp/var
18 /bin/mkdir /tmp/var
19 /bin/chmod 0755 /tmp/var
20 /bin/mkdir /var/lock /var/log /var/run /var/tmp
21 /bin/touch /var/run/utmp
22
23 # Start log daemons
24 /usr/sbin/syslogd
25 /usr/sbin/klogd -c 4
26
27 # Setup network
28 /sbin/ifconfig lo 127.0.0.1
29
30 # End of file

Properties

Name Value
svn:executable *