svn commit: r318193 - head/sys/boot/efi/loader
Mark Johnston
markj at FreeBSD.org
Thu May 11 18:53:30 UTC 2017
Author: markj
Date: Thu May 11 18:53:28 2017
New Revision: 318193
URL: https://svnweb.freebsd.org/changeset/base/318193
Log:
Set the right variable when overriding the default console speed.
MFC after: 1 week
Modified:
head/sys/boot/efi/loader/main.c
Modified: head/sys/boot/efi/loader/main.c
==============================================================================
--- head/sys/boot/efi/loader/main.c Thu May 11 17:26:34 2017 (r318192)
+++ head/sys/boot/efi/loader/main.c Thu May 11 18:53:28 2017 (r318193)
@@ -391,7 +391,7 @@ main(int argc, CHAR16 *argv[])
} else {
cpy16to8(&argv[i + 1][0], var,
sizeof(var));
- setenv("comconsole_speedspeed", var, 1);
+ setenv("comconsole_speed", var, 1);
}
i++;
break;
More information about the svn-src-head
mailing list