From owner-svn-ports-head@FreeBSD.ORG Mon Dec 15 17:04:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 553EDE68; Mon, 15 Dec 2014 17:04:28 +0000 (UTC) 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 40ED79A2; Mon, 15 Dec 2014 17:04:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBFH4S5w087810; Mon, 15 Dec 2014 17:04:28 GMT (envelope-from kmoore@FreeBSD.org) Received: (from kmoore@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBFH4RIX087807; Mon, 15 Dec 2014 17:04:27 GMT (envelope-from kmoore@FreeBSD.org) Message-Id: <201412151704.sBFH4RIX087807@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: kmoore set sender to kmoore@FreeBSD.org using -f From: Kris Moore Date: Mon, 15 Dec 2014 17:04:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374756 - in head/sysutils/grub2-pcbsd: . 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.18-1 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: Mon, 15 Dec 2014 17:04:28 -0000 Author: kmoore Date: Mon Dec 15 17:04:26 2014 New Revision: 374756 URL: https://svnweb.freebsd.org/changeset/ports/374756 QAT: https://qat.redports.org/buildarchive/r374756/ Log: - Add detection of another Windows 7 partition label - Bump PORTREV Modified: head/sysutils/grub2-pcbsd/Makefile head/sysutils/grub2-pcbsd/files/30_os-prober.in Modified: head/sysutils/grub2-pcbsd/Makefile ============================================================================== --- head/sysutils/grub2-pcbsd/Makefile Mon Dec 15 17:00:22 2014 (r374755) +++ head/sysutils/grub2-pcbsd/Makefile Mon Dec 15 17:04:26 2014 (r374756) @@ -3,7 +3,7 @@ PORTNAME= grub2-pcbsd PORTVERSION= 2.02p -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= sysutils MASTER_SITES= http://www.pcbsd.org/~kris/software/ \ ftp://ftp.pcbsd.org/pub/software/ Modified: head/sysutils/grub2-pcbsd/files/30_os-prober.in ============================================================================== --- head/sysutils/grub2-pcbsd/files/30_os-prober.in Mon Dec 15 17:00:22 2014 (r374755) +++ head/sysutils/grub2-pcbsd/files/30_os-prober.in Mon Dec 15 17:04:26 2014 (r374756) @@ -32,7 +32,7 @@ check_ntfs_part() fs_label=`grub-probe --device /dev/${disk} --target=fs_label` # Check for common windows NTFS labels for bootable partitions - if [ "$fs_label" != "System Reserved" -a "$fs_label" != "SYSTEM RESERVED" -a "$fs_label" != "eMachines" -a "$fs_label" != "OS" -a "$fs_label" != "SYSTEM" ] ; then return; fi + if [ "$fs_label" != "System Reserved" -a "$fs_label" != "SYSTEM RESERVED" -a "$fs_label" != "eMachines" -a "$fs_label" != "OS" -a "$fs_label" != "SYSTEM" -a "$fs_label" != "SYSTEM_DRV" ] ; then return; fi fs_uuid=`grub-probe --device /dev/${disk} --target=fs_uuid` if [ -z "$fs_uuid" ] ; then