From 7f1e7b5f752e324db88ab658e2b7d1bbb5b62922 Mon Sep 17 00:00:00 2001 From: srs5694 Date: Fri, 19 Jul 2013 23:25:53 -0400 Subject: [PATCH 1/1] Fixed install.sh confusion over autofs-mounted ESP. --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index a2c5612..dc6d898 100755 --- a/install.sh +++ b/install.sh @@ -33,6 +33,7 @@ # # Revision history: # +# 0.7.2 -- Fixed code that could be confused by use of autofs to mount the ESP # 0.7.0 -- Added support for the new Btrfs driver # 0.6.12 -- Added support for PreLoader as well as for shim # 0.6.11 -- Improvements in script's ability to handle directories with spaces @@ -635,7 +636,7 @@ FindLinuxESP() { fi InstallDir=`echo $EspLine | cut -d " " -f 6` if [[ -n "$InstallDir" ]] ; then - EspFilesystem=`grep "$InstallDir" /etc/mtab | uniq | cut -d " " -f 3` + EspFilesystem=`grep "$InstallDir" /etc/mtab | uniq | grep -v autofs | cut -d " " -f 3` fi echo "EspFilesystem is '$EspFilesystem'" if [[ $EspFilesystem != 'vfat' ]] ; then -- 2.39.2