- Add detection of another Windows 7 partition label
- Bump PORTREV
This commit is contained in:
parent
2f78781bb5
commit
7fe349016e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=374756
2 changed files with 2 additions and 2 deletions
|
@ -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/
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue