From: srs5694 Date: Tue, 26 Jan 2016 19:41:43 +0000 (-0500) Subject: Fixed bug that caused mvrefind to fail to move bootmgfw.efi in some X-Git-Url: https://code.delx.au/refind/commitdiff_plain/0a82bafff0b372b220e4d67b67c677ac067d1c82 Fixed bug that caused mvrefind to fail to move bootmgfw.efi in some situations. --- diff --git a/NEWS.txt b/NEWS.txt index 183d761..0ae4cdf 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -1,6 +1,13 @@ 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.) diff --git a/mvrefind b/mvrefind index 1bb5d45..0c0bf15 100755 --- a/mvrefind +++ b/mvrefind @@ -20,6 +20,7 @@ # # 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 @@ -189,7 +190,7 @@ MoveFiles() { 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