aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils
diff options
context:
space:
mode:
authorkmoore <kmoore@FreeBSD.org>2014-12-16 01:04:26 +0800
committerkmoore <kmoore@FreeBSD.org>2014-12-16 01:04:26 +0800
commit4ac2411a287d66c0ad0d6236d11ac4b9e5c0d7b8 (patch)
tree140b22ea72052205df5608cdd9964649a4057b6e /sysutils
parent13de44bcf861ce944bb7e4215bc953a348881e60 (diff)
downloadfreebsd-ports-gnome-4ac2411a287d66c0ad0d6236d11ac4b9e5c0d7b8.tar.gz
freebsd-ports-gnome-4ac2411a287d66c0ad0d6236d11ac4b9e5c0d7b8.tar.zst
freebsd-ports-gnome-4ac2411a287d66c0ad0d6236d11ac4b9e5c0d7b8.zip
- Add detection of another Windows 7 partition label
- Bump PORTREV
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/grub2-pcbsd/Makefile2
-rw-r--r--sysutils/grub2-pcbsd/files/30_os-prober.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/grub2-pcbsd/Makefile b/sysutils/grub2-pcbsd/Makefile
index 128b068dd580..4cdf88874881 100644
--- a/sysutils/grub2-pcbsd/Makefile
+++ b/sysutils/grub2-pcbsd/Makefile
@@ -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/
diff --git a/sysutils/grub2-pcbsd/files/30_os-prober.in b/sysutils/grub2-pcbsd/files/30_os-prober.in
index 827cce1c9e58..289756156931 100644
--- a/sysutils/grub2-pcbsd/files/30_os-prober.in
+++ b/sysutils/grub2-pcbsd/files/30_os-prober.in
@@ -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