This website works better with JavaScript
Home
Explore
Help
Sign In
OpenWrt
/
openwrt
mirror of
https://github.com/openwrt/openwrt.git
Watch
2
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
when rebooting, use lazy umounts as fallback (patch by puchu)
SVN-Revision: 19429
Felix Fietkau
16 years ago
parent
541725ce18
commit
10ec4fa292
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
1
1
package/base-files/files/etc/init.d/umount
+ 1
- 1
package/base-files/files/etc/init.d/umount
View File
@@ -4,5 +4,5 @@
STOP=99
stop() {
sync
- umount -a -r
+ umount -a -r
-l
}