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

Collapse All | Expand All

(-)a/defaults/linuxrc (-4 / +4 lines)
Lines 133-147 Link Here
133
		;;
133
		;;
134
		# Module no-loads
134
		# Module no-loads
135
		doload=*)
135
		doload=*)
136
			MDOLIST=${x#*=}
136
			MDOLIST="$(echo ${MDOLIST} ${x#*=})"
137
			MDOLIST=$(echo ${MDOLIST} | sed -e 's/,/ /g')
137
			MDOLIST="$(echo ${MDOLIST} | sed -e 's/^\ *//' -e 's/,/ /g')"
138
		;;
138
		;;
139
		nodetect)
139
		nodetect)
140
			NODETECT=1
140
			NODETECT=1
141
		;;
141
		;;
142
		noload=*)
142
		noload=*)
143
			MLIST=${x#*=}
143
			MLIST="$(echo ${MLIST} ${x#*=})"
144
			MLIST="$(echo ${MLIST} | sed -e 's/,/ /g')"
144
			MLIST="$(echo ${MLIST} | sed -e 's/^\ *//' -e 's/,/ /g')"
145
			export MLIST
145
			export MLIST
146
		;;
146
		;;
147
		# Redirect output to a specific tty
147
		# Redirect output to a specific tty

Return to bug 496512