This repository was archived by the owner on Oct 28, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +18
-7
lines changed Expand file tree Collapse file tree 5 files changed +18
-7
lines changed Original file line number Diff line number Diff line change
1
+ GRUB2-filemanager would not be what it is today without the invaluable help of
2
+ everybody who was kind enough to spend time testing it and reporting
3
+ bugs.
4
+
5
+ GRUB2-filemanager is based on the following open source projects:
6
+
7
+ [ a1ive's GRUB2] ( https://github.com/a1ive/grub )
8
+ [ GRUB4DOS] ( https://github.com/chenall/grub4dos )
9
+ [ memdisk] ( https://wiki.syslinux.org/wiki/index.php?title=MEMDISK )
10
+ [ ImDisk] ( http://www.ltr-data.se/opencode.html/#ImDisk )
11
+ [ Explorer++] ( https://github.com/derceg/explorerplusplus )
12
+ [ WinXShell] ( https://github.com/slorelee/PExplorer )
13
+ [ DUET from Clover] ( https://sourceforge.net/projects/cloverefiboot/ )
14
+ [ NTBOOT] ( http://chenall.net/post/ntboot/ )
15
+ [ winvblock] ( https://github.com/Sha0/winvblock )
Original file line number Diff line number Diff line change 3
3
function bootpe {
4
4
if wimtools --is64 --index=2 " ${1} " ;
5
5
then
6
- set explorer=" (install)/explorerpp64.exe" ;
7
- set winxshell=" (install)/WinXShell64.exe" ;
6
+ set sfx=" (install)/sfx64.exe" ;
8
7
else
9
- set explorer=" (install)/explorerpp32.exe" ;
10
- set winxshell=" (install)/WinXShell32.exe" ;
8
+ set sfx=" (install)/sfx32.exe" ;
11
9
fi ;
12
10
set lang=en_US;
13
11
terminal_output console;
14
12
loopback wimboot ${prefix} /wimboot.xz;
15
13
loopback install ${prefix} /explorer.xz;
16
14
wimboot --index=2 \
17
15
@:bootmgfw.efi:(wimboot)/bootmgfw.efi \
18
- @:explorer.exe:" ${explorer} " \
19
- @:WinXShell.exe:" ${winxshell} " \
20
- @:WinXShell.jcfg:(install)/WinXShell.jcfg \
16
+ @:sfx64.exe:${sfx} \
21
17
@:winpeshl.ini:(install)/winpeshl.ini \
22
18
@:boot.wim:" ${1} " ;
23
19
}
You can’t perform that action at this time.
0 commit comments