From owner-svn-ports-head@FreeBSD.ORG Tue May 26 16:55:41 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 656633F8; Tue, 26 May 2015 16:55:41 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5332826C; Tue, 26 May 2015 16:55:41 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4QGtfeT056071; Tue, 26 May 2015 16:55:41 GMT (envelope-from kmoore@FreeBSD.org) Received: (from kmoore@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4QGteEg056069; Tue, 26 May 2015 16:55:40 GMT (envelope-from kmoore@FreeBSD.org) Message-Id: <201505261655.t4QGteEg056069@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: kmoore set sender to kmoore@FreeBSD.org using -f From: Kris Moore Date: Tue, 26 May 2015 16:55:40 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 May 2015 16:55:41 -0000 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); +