This repository was archived by the owner on Oct 17, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstartup.nsh
More file actions
68 lines (57 loc) · 1.12 KB
/
startup.nsh
File metadata and controls
68 lines (57 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@echo -off
mode 80 25
cls
if exist .\EFI\BOOT\BOOTX64.EFI then
.\EFI\BOOT\BOOTX64.EFI
goto END
endif
if exist fs0:\EFI\BOOT\BOOTX64.EFI then
fs0:
echo Fennix Bootloader found in fs0:
.\EFI\BOOT\BOOTX64.EFI
goto END
endif
if exist fs1:\EFI\BOOT\BOOTX64.EFI then
fs1:
echo Fennix Bootloader found in fs1:
.\EFI\BOOT\BOOTX64.EFI
goto END
endif
if exist fs2:\EFI\BOOT\BOOTX64.EFI then
fs2:
echo Fennix Bootloader found in fs2:
.\EFI\BOOT\BOOTX64.EFI
goto END
endif
if exist fs3:\EFI\BOOT\BOOTX64.EFI then
fs3:
echo Fennix Bootloader found in fs3:
.\EFI\BOOT\BOOTX64.EFI
goto END
endif
if exist fs4:\EFI\BOOT\BOOTX64.EFI then
fs4:
echo Fennix Bootloader found in fs4:
.\EFI\BOOT\BOOTX64.EFI
goto END
endif
if exist fs5:\EFI\BOOT\BOOTX64.EFI then
fs5:
echo Fennix Bootloader found in fs5:
.\EFI\BOOT\BOOTX64.EFI
goto END
endif
if exist fs6:\EFI\BOOT\BOOTX64.EFI then
fs6:
echo Fennix Bootloader found in fs6:
.\EFI\BOOT\BOOTX64.EFI
goto END
endif
if exist fs7:\EFI\BOOT\BOOTX64.EFI then
fs7:
echo Fennix Bootloader found in fs7:
.\EFI\BOOT\BOOTX64.EFI
goto END
endif
echo "Unable to find the bootloader".
:END