Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 168977 | Differences between
and this patch

Collapse All | Expand All

(-)sh/rc-mount.sh (-2 / +8 lines)
Lines 52-59 Link Here
52
52
53
			# OK, try forcing things
53
			# OK, try forcing things
54
			if [ ${retry} -le 0 ] ; then
54
			if [ ${retry} -le 0 ] ; then
55
				${cmd} -f "${mnt}" || retry=-999
55
				local extra_opts="-f"
56
				retry=-999
56
				case "${cmd}" in
57
					mount*)
58
						# Silly reiserfs help blocks us, so bypass it
59
						[ "${RC_UNAME}" = "linux" ] && extra_opts="-i" 
60
						;;
61
				esac
62
				${cmd} ${extra_opts} "${mnt}" || retry=-999
57
				break
63
				break
58
			fi
64
			fi
59
		done
65
		done

Return to bug 168977