mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-11-04 06:00:13 +00:00
2aae096c2a
2. add build script and document see DOC/BuildVentoyFromSource.txt for detail
15 lines
343 B
Bash
15 lines
343 B
Bash
#!/bin/bash
|
|
|
|
/opt/diet32/bin/diet gcc -Os -m32 vtoy_gen_uuid.c -o vtoy_gen_uuid
|
|
|
|
if [ -e vtoy_gen_uuid ]; then
|
|
echo -e '\n############### SUCCESS ###############\n'
|
|
|
|
rm -f ../INSTALL/tool/vtoy_gen_uuid
|
|
cp -a vtoy_gen_uuid ../INSTALL/tool/vtoy_gen_uuid
|
|
else
|
|
echo -e '\n############### FAILED ################\n'
|
|
exit 1
|
|
fi
|
|
|