]> code.delx.au - refind/commitdiff
Fixed bug that caused mvrefind to fail to move bootmgfw.efi in some
authorsrs5694 <srs5694@users.sourceforge.net>
Tue, 26 Jan 2016 19:41:43 +0000 (14:41 -0500)
committersrs5694 <srs5694@users.sourceforge.net>
Tue, 26 Jan 2016 19:41:43 +0000 (14:41 -0500)
situations.

NEWS.txt
mvrefind

index 183d7615d74cd84f79283e7bb0613c8ae665ec73..0ae4cdf921ab8b373df90b8b63645661c727d709 100644 (file)
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -1,6 +1,13 @@
 0.10.2 (?/??/2016):
 -------------------
 
 0.10.2 (?/??/2016):
 -------------------
 
+- Fixed bug in refind-install that caused mountesp to be installed as a FILE
+  called /usr/local/bin on OS X if the /usr/local/bin directory did not
+  already exist.
+
+- Fixed bug in mvrefind that caused it to fail to move bootmgfw.efi in
+  some situations.
+
 - Worked around bug/quirk in some EFIs (in HP ProBook 6470b laptop, at
   least) that prevented EFI filesystem drivers from working. (Drivers would
   load but not provide access to filesystems.)
 - Worked around bug/quirk in some EFIs (in HP ProBook 6470b laptop, at
   least) that prevented EFI filesystem drivers from working. (Drivers would
   load but not provide access to filesystems.)
index 1bb5d45a6e104a080cb4b8a8878e62be9c9a56c6..0c0bf1523d47e641090730b53b4bf0027e10620b 100755 (executable)
--- a/mvrefind
+++ b/mvrefind
@@ -20,6 +20,7 @@
 #
 # Revision history:
 #
 #
 # Revision history:
 #
+# 0.10.2  -- Fixed bug in moving bootmgfw.efi in some situations
 # 0.10.1  -- Generalized to support ARM64 (aka AARCH64, aa64)
 # 0.10.0  -- Renamed from mvrefind.sh to mvrefind
 # 0.6.3   -- Initial release
 # 0.10.1  -- Generalized to support ARM64 (aka AARCH64, aa64)
 # 0.10.0  -- Renamed from mvrefind.sh to mvrefind
 # 0.6.3   -- Initial release
@@ -189,7 +190,7 @@ MoveFiles() {
    fi
 
    if [[ $EspTargetDir == "/efi/microsoft/boot" && -d $TargetDir ]] ; then
    fi
 
    if [[ $EspTargetDir == "/efi/microsoft/boot" && -d $TargetDir ]] ; then
-      mv -n $EspTargetDir/bootmgfw.efi $InstallDir/EFI/Microsoft/
+      mv -n $TargetDir/bootmgfw.efi $InstallDir/EFI/Microsoft/
    fi
 
    mkdir -p $TargetDir
    fi
 
    mkdir -p $TargetDir