mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 19:33:08 +02:00
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30501 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
ae888d8dfb
commit
f86677c02e
@ -69,8 +69,13 @@ if [ `basename $blkdev` != "block" ]; then
|
|||||||
}
|
}
|
||||||
|
|
||||||
grep -q "/dev/$device" /proc/swaps || grep -q "/dev/$device" /proc/mounts || {
|
grep -q "/dev/$device" /proc/swaps || grep -q "/dev/$device" /proc/mounts || {
|
||||||
[ "$anon_mount" -eq 1 ] && [ -z "$use_device" ] && {
|
[ "$anon_mount" -eq 1 -a -z "$use_device" ] && {
|
||||||
( mkdir -p /mnt/$device && mount /dev/$device /mnt/$device ) 2>&1 | tee /proc/self/fd/2 | logger -t 'fstab'
|
case "$device" in
|
||||||
|
mtdblock*) ;;
|
||||||
|
*)
|
||||||
|
( mkdir -p /mnt/$device && mount /dev/$device /mnt/$device ) 2>&1 | tee /proc/self/fd/2 | logger -t 'fstab'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
reset_dev_section_cb
|
reset_dev_section_cb
|
||||||
|
Loading…
Reference in New Issue
Block a user