mirror of
https://github.com/ventoy/Ventoy.git
synced 2025-08-27 16:01:14 +00:00
update
This commit is contained in:
27
IMG/mkloopex.sh
Normal file
27
IMG/mkloopex.sh
Normal file
@@ -0,0 +1,27 @@
|
||||
#!/bin/bash
|
||||
|
||||
VENTOY_PATH=$PWD/../
|
||||
|
||||
rm -f vtloopex.cpio
|
||||
cp -a vtloopex vtloopex_tmp
|
||||
cd vtloopex_tmp
|
||||
|
||||
|
||||
for dir in $(ls); do
|
||||
cd $dir
|
||||
tar -cJf vtloopex.tar.xz vtloopex
|
||||
rm -rf vtloopex
|
||||
cd ..
|
||||
done
|
||||
|
||||
find . | cpio -o -H newc>../vtloopex.cpio
|
||||
|
||||
cd ..
|
||||
|
||||
rm -rf vtloopex_tmp
|
||||
|
||||
rm -f $VENTOY_PATH/INSTALL/ventoy/vtloopex.cpio
|
||||
cp -a vtloopex.cpio $VENTOY_PATH/INSTALL/ventoy/
|
||||
|
||||
echo '======== SUCCESS ============='
|
||||
|
Reference in New Issue
Block a user