svn commit: r387492 - in head/sysutils/grub2-bhyve: . files
Kris Moore
kmoore at FreeBSD.org
Tue May 26 16:55:41 UTC 2015
Author: kmoore
Date: Tue May 26 16:55:40 2015
New Revision: 387492
URL: https://svnweb.freebsd.org/changeset/ports/387492
Log:
- Add patch to fix bug with hanging when using nmdm as console
- Bump PORTREV
PR: 200460
Submitted by: olgeni@
Added:
head/sysutils/grub2-bhyve/files/
head/sysutils/grub2-bhyve/files/patch-grub-core_term_emu_console.c (contents, props changed)
Modified:
head/sysutils/grub2-bhyve/Makefile
Modified: head/sysutils/grub2-bhyve/Makefile
==============================================================================
--- head/sysutils/grub2-bhyve/Makefile Tue May 26 16:47:02 2015 (r387491)
+++ head/sysutils/grub2-bhyve/Makefile Tue May 26 16:55:40 2015 (r387492)
@@ -4,6 +4,7 @@
PORTNAME= grub2-bhyve
DISTVERSIONPREFIX= v
DISTVERSION= 0.30
+PORTREVISION= 1
CATEGORIES= sysutils
MAINTAINER= kmoore at FreeBSD.org
Added: head/sysutils/grub2-bhyve/files/patch-grub-core_term_emu_console.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/grub2-bhyve/files/patch-grub-core_term_emu_console.c Tue May 26 16:55:40 2015 (r387492)
@@ -0,0 +1,11 @@
+--- grub-core/term/emu/console.c.orig 2015-05-26 09:58:09 UTC
++++ grub-core/term/emu/console.c
+@@ -260,7 +260,7 @@ grub_ncurses_init (struct grub_term_outp
+
+ if (g_cdev != NULL) {
+ /* Open user-supplied console device. */
+- fd = open (g_cdev, O_RDWR);
++ fd = open (g_cdev, O_RDWR | O_NONBLOCK);
+ if (fd < 0)
+ return (GRUB_ERR_UNKNOWN_DEVICE);
+
More information about the svn-ports-all
mailing list