mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-11-06 03:20:39 +00:00
93996cf7e2
2. Add WIMBOOT for UEFI mode.
21 lines
354 B
Bash
21 lines
354 B
Bash
#!/bin/sh
|
|
|
|
VTOY_PATH=$PWD/../
|
|
|
|
cd wimboot-2.7.3/src
|
|
|
|
make clean
|
|
make -j 16
|
|
|
|
rm -f *.xz
|
|
xz wimboot.x86_64
|
|
xz wimboot.i386.efi
|
|
|
|
rm -f $VTOY_PATH/INSTALL/ventoy/wimboot.x86_64.xz
|
|
rm -f $VTOY_PATH/INSTALL/ventoy/wimboot.i386.efi.xz
|
|
cp -a wimboot.x86_64.xz $VTOY_PATH/INSTALL/ventoy/
|
|
cp -a wimboot.i386.efi.xz $VTOY_PATH/INSTALL/ventoy/
|
|
|
|
make clean
|
|
cd ../../
|