svn commit: r374756 - in head/sysutils/grub2-pcbsd: . files

Kris Moore kmoore at FreeBSD.org
Mon Dec 15 17:04:28 UTC 2014


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


More information about the svn-ports-head mailing list