Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 Dec 2014 17:04:27 +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: r374756 - in head/sysutils/grub2-pcbsd: . files
Message-ID:  <201412151704.sBFH4RIX087807@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412151704.sBFH4RIX087807>