Magellan Linux

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

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

trunk/busybox-initscripts/rc/mountfs revision 1228 by niro, Thu Mar 3 18:37:26 2011 UTC trunk/initscripts/busybox/rc/mountfs revision 1790 by niro, Mon Apr 2 11:27:49 2012 UTC
# Line 3  Line 3 
3    
4  #%rlevels: 7:s 0:k  #%rlevels: 7:s 0:k
5  #%start: 40  #%start: 40
6  #%stop: 60  #%stop: 90
7    
8  #deps  #deps
9  #%needs:  #%needs:
# Line 34  case "$1" in Line 34  case "$1" in
34   # cannot be mounted at this time, add them to the NO_FS variable   # cannot be mounted at this time, add them to the NO_FS variable
35   # below. All file systems that are added to the variable in the   # below. All file systems that are added to the variable in the
36   # form of no<filesystem> will be skipped.   # form of no<filesystem> will be skipped.
37   NO_FS="noswap,nonfs,nosmbfs,noproc,nocoda,noncpfs,noshm"   NO_FS="noswap,nonfs,nosmbfs,noproc,nocoda,noncpfs,noshm,nodevtmpfs"
38   rc_print "Mounting remaining file systems ..."   rc_print "Mounting remaining file systems ..."
39   mount -a -t $NO_FS   mount -a -t $NO_FS
40   evaluate_retval   evaluate_retval
# Line 47  case "$1" in Line 47  case "$1" in
47   rc_print "Unmounting all other currently mounted file systems ..."   rc_print "Unmounting all other currently mounted file systems ..."
48   if [ -e /dev/.udev ]   if [ -e /dev/.udev ]
49   then   then
50   NO_FS="noramfs,notmpfs,nodevtmpfs,nodevpts"   NO_FS="noramfs,notmpfs,nodevtmpfs,nodevpts,noproc"
51   umount -a -r -d -t ${NO_FS}   umount -a -r -d -t ${NO_FS}
52   else   else
53   # -d, umount loop devices as well   # -d, umount loop devices as well

Legend:
Removed from v.1228  
changed lines
  Added in v.1790