diff -uNr initramfs-tools-0.92bubuntu29.old/scripts/init-top/framebuffer initramfs-tools-0.92bubuntu29/scripts/init-top/framebuffer --- initramfs-tools-0.92bubuntu29.old/scripts/init-top/framebuffer 2009-03-09 17:38:23.000000000 -0400 +++ initramfs-tools-0.92bubuntu29/scripts/init-top/framebuffer 2009-04-24 16:12:19.000000000 -0400 @@ -21,14 +21,15 @@ # 1) options are comma-separated # 2) options can be in either of these three forms: # =, :, . -# 3) the "mode" option has the form x[M][R][-][@][i][m] -# and may or may not start with "mode=" +# 3) the "mode_option" option has the form +# x[M][R][-][@][i][m] +# and may or may not start with "mode_option=" # # When the options are used with modules, they need to be space-separated # and the following conversions are needed: # : -> = # -> =1 -# -> mode= +# -> mode_option= parse_video_opts() { local OPTS="$1" @@ -46,9 +47,9 @@ # In the ":" form elif [ "${opt}" != "${opt#*:}" ]; then echo -n "${opt%:*}=${opt#*:} " - # Presumably a modevalue without the "mode=" prefix + # Presumably a modevalue without the "mode_option=" prefix elif [ "${opt}" != "${opt#[0-9]*x[0-9]}" ]; then - echo -n "mode=$opt " + echo -n "mode_option=$opt " # Presumably a boolean else echo -n "${opt}=1 "