]> glassweightruler.freedombox.rocks Git - Ventoy.git/blob - wimboot/build.sh
Update Linux GUI type condition
[Ventoy.git] / wimboot / build.sh
1 #!/bin/sh
2
3 VTOY_PATH=$PWD/../
4
5 cd wimboot-2.7.3/src
6
7 make clean
8 make -j 16
9
10 rm -f *.xz
11 xz wimboot.x86_64
12 xz wimboot.i386.efi
13
14 rm -f $VTOY_PATH/INSTALL/ventoy/wimboot.x86_64.xz
15 rm -f $VTOY_PATH/INSTALL/ventoy/wimboot.i386.efi.xz
16 cp -a wimboot.x86_64.xz $VTOY_PATH/INSTALL/ventoy/
17 cp -a wimboot.i386.efi.xz $VTOY_PATH/INSTALL/ventoy/
18
19 make clean
20 cd ../../