2020-08-08 11:39:31 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
DSTDIR=../../IMG/cpio/ventoy/busybox
|
|
|
|
|
2020-12-22 13:21:44 +00:00
|
|
|
rm -f vtchmod32 vtchmod64 vtchmod64_musl vtchmodaa64
|
2020-12-11 23:56:52 +00:00
|
|
|
rm -f $DSTDIR/vtchmod32 $DSTDIR/vtchmod64 $DSTDIR/vtchmodaa64
|
2020-08-08 11:39:31 +00:00
|
|
|
|
|
|
|
/opt/diet32/bin/diet gcc -Os -m32 vtchmod.c -o vtchmod32
|
|
|
|
/opt/diet64/bin/diet gcc -Os vtchmod.c -o vtchmod64
|
2020-12-11 23:56:52 +00:00
|
|
|
aarch64-linux-gcc -Os -static vtchmod.c -o vtchmodaa64
|
|
|
|
aarch64-linux-strip --strip-all vtchmodaa64
|
|
|
|
|
2020-12-22 13:21:44 +00:00
|
|
|
gcc -specs "/usr/local/musl/lib/musl-gcc.specs" -Os -static vtchmod.c -o vtchmod64_musl
|
|
|
|
strip --strip-all vtchmod64_musl
|
2020-08-08 11:39:31 +00:00
|
|
|
|
|
|
|
chmod 777 vtchmod32
|
|
|
|
chmod 777 vtchmod64
|
2020-12-11 23:56:52 +00:00
|
|
|
chmod 777 vtchmodaa64
|
2020-12-22 13:21:44 +00:00
|
|
|
chmod 777 vtchmod64_musl
|
2020-08-08 11:39:31 +00:00
|
|
|
|
|
|
|
cp -a vtchmod32 $DSTDIR/
|
|
|
|
cp -a vtchmod64 $DSTDIR/
|
2020-12-11 23:56:52 +00:00
|
|
|
cp -a vtchmodaa64 $DSTDIR/
|
2020-12-22 13:21:44 +00:00
|
|
|
cp -a vtchmod64_musl $DSTDIR/
|
2020-08-08 11:39:31 +00:00
|
|
|
|