From: Felix Fietkau Date: Sat, 14 Mar 2015 08:21:02 +0000 (+0000) Subject: grub2: fix processing the serial rts/cts option X-Git-Tag: v15.05~1351 X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;ds=sidebyside;h=8c317f089a8f27f25a57932a4cbf3f0eebfa2b4b;p=openwrt-github%2F.git grub2: fix processing the serial rts/cts option Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44752 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/boot/grub2/patches/210-fix_serial_rtscts.patch b/package/boot/grub2/patches/210-fix_serial_rtscts.patch new file mode 100644 index 0000000000..d60471c1d1 --- /dev/null +++ b/package/boot/grub2/patches/210-fix_serial_rtscts.patch @@ -0,0 +1,14 @@ +--- a/grub-core/term/serial.c ++++ b/grub-core/term/serial.c +@@ -241,9 +241,9 @@ grub_cmd_serial (grub_extcmd_context_t c + + if (state[OPTION_RTSCTS].set) + { +- if (grub_strcmp (state[OPTION_PARITY].arg, "on") == 0) ++ if (grub_strcmp (state[OPTION_RTSCTS].arg, "on") == 0) + config.rtscts = 1; +- if (grub_strcmp (state[OPTION_PARITY].arg, "off") == 0) ++ else if (grub_strcmp (state[OPTION_RTSCTS].arg, "off") == 0) + config.rtscts = 0; + else + return grub_error (GRUB_ERR_BAD_ARGUMENT,