summaryrefslogtreecommitdiffstats
path: root/package/boot/grub2
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-03-14 08:21:02 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-03-14 08:21:02 +0000
commit5011d85ee8ab6ce775bc4681766dc204198b73a5 (patch)
treed5e8bb62d75367329266e05dfe1dbb2a2784a832 /package/boot/grub2
parentc5aa269d576e79b08dee41cf2b661f9e6fdc4069 (diff)
downloadmaster-31e0f0ae-5011d85ee8ab6ce775bc4681766dc204198b73a5.tar.gz
master-31e0f0ae-5011d85ee8ab6ce775bc4681766dc204198b73a5.tar.bz2
master-31e0f0ae-5011d85ee8ab6ce775bc4681766dc204198b73a5.zip
grub2: fix processing the serial rts/cts option
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44752
Diffstat (limited to 'package/boot/grub2')
-rw-r--r--package/boot/grub2/patches/210-fix_serial_rtscts.patch14
1 files changed, 14 insertions, 0 deletions
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,