By adding the kernelcmd options "dokeymap" to MY_HWOPTS instead of
the HWOPTS version, "keymap" this typo broke the handling of keymaps
if you only had "keymap=<...>" in kernelcmd and did not specify "dokeymap"
too (which according to documentation should not be needed).
cleanup-cruft
Peter Hjalmarsson 14 years ago
parent 32563f448e
commit a768d85c5a

@ -5,6 +5,11 @@
# Distributed under the GPL v2
# $Id$
07 Mar 2011; Peter Hjalmarsson <xake@gentoo.org> defaults/initrd.scripts:
Fix typo where the kernelcmd version "dokeymap" was added to MY_HWOPTS
instead of the HWOPTS version "keymap".
Broke setups where only "keymap=<...>" was added to kernelcmd.
24 Feb 2011; Sebastian Pipping <sping@gentoo.org> ChangeLog:
Fix handling of mdadm.conf (bug #354809)

@ -466,7 +466,7 @@ cmdline_hwopts() {
fi
if [ "$(echo ${y} | cut -b -7)" = "keymap=" ]
then
MY_HWOPTS="${MY_HWOPTS} dokeymap"
MY_HWOPTS="${MY_HWOPTS} keymap"
fi
done
done

Loading…
Cancel
Save