-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Iterate over filesystems in startup.nsh and choose first one with Win…
…dows (#3)
- Loading branch information
Showing
3 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
fs0:\EFI\Boot\PowerMonkey.efi | ||
|
||
if exist fs0:\EFI\Microsoft\Boot\bootmgfw.efi then | ||
fs0:\EFI\Microsoft\Boot\bootmgfw.efi | ||
endif | ||
if exist fs1:\EFI\Microsoft\Boot\bootmgfw.efi then | ||
fs1:\EFI\Microsoft\Boot\bootmgfw.efi | ||
endif | ||
if exist fs2:\EFI\Microsoft\Boot\bootmgfw.efi then | ||
fs2:\EFI\Microsoft\Boot\bootmgfw.efi | ||
endif | ||
if exist fs3:\EFI\Microsoft\Boot\bootmgfw.efi then | ||
fs3:\EFI\Microsoft\Boot\bootmgfw.efi | ||
endif | ||
if exist fs4:\EFI\Microsoft\Boot\bootmgfw.efi then | ||
fs4:\EFI\Microsoft\Boot\bootmgfw.efi | ||
endif | ||
if exist fs5:\EFI\Microsoft\Boot\bootmgfw.efi then | ||
fs5:\EFI\Microsoft\Boot\bootmgfw.efi | ||
endif | ||
if exist fs6:\EFI\Microsoft\Boot\bootmgfw.efi then | ||
fs6:\EFI\Microsoft\Boot\bootmgfw.efi | ||
endif | ||
if exist fs7:\EFI\Microsoft\Boot\bootmgfw.efi then | ||
fs7:\EFI\Microsoft\Boot\bootmgfw.efi | ||
endif |