svn commit: r370377 - in head/sysutils/grub2-pcbsd: . files
Kris Moore
kmoore at FreeBSD.org
Tue Oct 7 17:44:28 UTC 2014
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
More information about the svn-ports-all
mailing list