Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Oct 2014 17:44: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: r370377 - in head/sysutils/grub2-pcbsd: . files
Message-ID:  <201410071744.s97HiRQb016437@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kmoore
Date: Tue Oct  7 17:44:27 2014
New Revision: 370377
URL: https://svnweb.freebsd.org/changeset/ports/370377
QAT: https://qat.redports.org/buildarchive/r370377/

Log:
   - Update grub 30_os-prober.in to detect more bootable NTFS partitions
   - 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	Tue Oct  7 17:20:59 2014	(r370376)
+++ head/sysutils/grub2-pcbsd/Makefile	Tue Oct  7 17:44:27 2014	(r370377)
@@ -3,7 +3,7 @@
 
 PORTNAME=	grub2-pcbsd
 PORTVERSION=	2.02p
-PORTREVISION=	6
+PORTREVISION=	7
 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	Tue Oct  7 17:20:59 2014	(r370376)
+++ head/sysutils/grub2-pcbsd/files/30_os-prober.in	Tue Oct  7 17:44:27 2014	(r370377)
@@ -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" != "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" ] ; 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?201410071744.s97HiRQb016437>