Magellan Linux

Diff of /trunk/initscripts/busybox/rc/rc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1832 by niro, Tue Jun 26 16:42:54 2012 UTC revision 1890 by niro, Wed Aug 22 17:55:09 2012 UTC
# Line 127  then Line 127  then
127   rc_print "Mounting tmpfs at ${svcdir} ..."   rc_print "Mounting tmpfs at ${svcdir} ..."
128   mount -n -t tmpfs tmpfs "${svcdir}" -o rw,mode=0644,size="${svcsize}"k   mount -n -t tmpfs tmpfs "${svcdir}" -o rw,mode=0644,size="${svcsize}"k
129   evaluate_retval   evaluate_retval
130    
131     ## /run /tmp /var/lock
132     for i in /run /tmp /var/lock
133     do
134     if [ -d ${i} ]
135     then
136     rc_print "Mounting tmpfs at ${i} ..."
137     mount -n -t tmpfs tmpfs ${i} -o rw,nosuid,nodev,relatime
138     evaluate_retval
139     fi
140     done
141     # extra check for /var/lock
142     if [ -L /var/lock ]
143     then
144     mkdir -p /run/lock
145     rc_print "Mounting tmpfs at /run/lock ..."
146     mount -n -t tmpfs tmpfs /run/lock -o rw,nosuid,nodev,relatime
147     evaluate_retval
148     fi
149     # extra check if /run and /var/run are directories
150     if [ -d /run ] && [ -d /var/run ]
151     then
152     rc_print "Mounting tmpfs at /var/run ..."
153     mount -n -o bind /run /var/run
154     evaluate_retval
155     fi
156  fi  fi
157    
158  if [[ ${runlevel} = shutdown ]] || [[ ${runlevel} = reboot ]]  if [[ ${runlevel} = shutdown ]] || [[ ${runlevel} = reboot ]]

Legend:
Removed from v.1832  
changed lines
  Added in v.1890