DragonFly BSD support

This commit is contained in:
longpanda 2020-12-31 21:56:58 +08:00
parent fb7008f49a
commit bfe194c190
16 changed files with 1407 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#!/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