mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-11-11 13:10:38 +00:00
14 lines
243 B
Bash
14 lines
243 B
Bash
#!/bin/sh
|
|
|
|
rm -f init
|
|
|
|
gcc -DMOUNT_NOMAIN -Os -static *.c -I. -lutil -lkiconv -o init
|
|
|
|
strip --strip-all init
|
|
|
|
if [ -e init ]; then
|
|
echo -e "\n========= SUCCESS ==============\n"
|
|
else
|
|
echo -e "\n========= FAILED ==============\n"
|
|
fi
|