Date: Tue, 26 May 2015 16:55:40 +0000 (UTC) From: Kris Moore <kmoore@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r387492 - in head/sysutils/grub2-bhyve: . files Message-ID: <201505261655.t4QGteEg056069@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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); +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505261655.t4QGteEg056069>