1.0.27 release

This commit is contained in:
longpanda
2020-10-31 19:06:30 +08:00
parent 062c71b972
commit 147a23c9dd
11 changed files with 414 additions and 23 deletions

View File

@@ -21,7 +21,12 @@ if [ "$grub_platform" = "pc" ]; then
if search -n -s -f /Boot/BCD; then
for bt in bootmgr BOOTMGR Bootmgr BootMGR; do
if [ -f /$bt ]; then
ntldr /$bt
if regexp '^hd0' $root; then
ntldr /$bt
else
drivemap -s hd0 $root
ntldr /$bt
fi
break
fi
done