mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-11-02 09:40:20 +00:00
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 ../../
|