Skip to content
This repository was archived by the owner on Oct 28, 2023. It is now read-only.

Commit c4d7901

Browse files
committed
iso/pe: add startbat
1 parent d0b3745 commit c4d7901

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

THANKS.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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)

arch/ia32/explorer.xz

-18.1 KB
Binary file not shown.

arch/legacy/explorer.xz

316 KB
Binary file not shown.

arch/x64/explorer.xz

4.53 KB
Binary file not shown.

boot/grubfm/rules/iso/buildpe.sh

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,17 @@
33
function bootpe {
44
if wimtools --is64 --index=2 "${1}";
55
then
6-
set explorer="(install)/explorerpp64.exe";
7-
set winxshell="(install)/WinXShell64.exe";
6+
set sfx="(install)/sfx64.exe";
87
else
9-
set explorer="(install)/explorerpp32.exe";
10-
set winxshell="(install)/WinXShell32.exe";
8+
set sfx="(install)/sfx32.exe";
119
fi;
1210
set lang=en_US;
1311
terminal_output console;
1412
loopback wimboot ${prefix}/wimboot.xz;
1513
loopback install ${prefix}/explorer.xz;
1614
wimboot --index=2 \
1715
@:bootmgfw.efi:(wimboot)/bootmgfw.efi \
18-
@:explorer.exe:"${explorer}" \
19-
@:WinXShell.exe:"${winxshell}" \
20-
@:WinXShell.jcfg:(install)/WinXShell.jcfg \
16+
@:sfx64.exe:${sfx} \
2117
@:winpeshl.ini:(install)/winpeshl.ini \
2218
@:boot.wim:"${1}";
2319
}

0 commit comments

Comments
 (0)