Ventoy/INSTALL/ventoy_pack.sh

197 lines
4.3 KiB
Bash
Raw Normal View History

#!/bin/sh
2021-01-29 04:54:04 -05:00
if [ "$1" = "CI" ]; then
2021-01-29 07:58:02 -05:00
OPT='-dR'
2021-01-29 04:54:04 -05:00
else
OPT='-a'
fi
2020-05-24 08:43:31 -04:00
dos2unix -q ./tool/ventoy_lib.sh
2020-05-30 08:13:04 -04:00
dos2unix -q ./tool/VentoyWorker.sh
dos2unix -q ./tool/VentoyGTK.glade
2021-09-13 04:41:51 -04:00
dos2unix -q ./tool/distro_gui_type.json
2020-05-24 08:43:31 -04:00
. ./tool/ventoy_lib.sh
GRUB_DIR=../GRUB2/INSTALL
LANG_DIR=../LANGUAGES
if ! [ -d $GRUB_DIR ]; then
echo "$GRUB_DIR not exist"
exit 1
fi
cd ../IMG
sh mkcpio.sh
2020-08-29 01:12:36 -04:00
sh mkloopex.sh
cd -
2021-04-21 05:00:40 -04:00
cd ../Unix
sh pack_unix.sh
cd -
cd ../LinuxGUI
sh language.sh || exit 1
sh build.sh
cd -
LOOP=$(losetup -f)
rm -f img.bin
dd if=/dev/zero of=img.bin bs=1M count=256 status=none
losetup -P $LOOP img.bin
while ! grep -q 524288 /sys/block/${LOOP#/dev/}/size 2>/dev/null; do
echo "wait $LOOP ..."
sleep 1
done
2020-07-04 10:29:54 -04:00
format_ventoy_disk_mbr 0 $LOOP fdisk
$GRUB_DIR/sbin/grub-bios-setup --skip-fs-probe --directory="./grub/i386-pc" $LOOP
curver=$(get_ventoy_version_from_cfg ./grub/grub.cfg)
tmpmnt=./ventoy-${curver}-mnt
tmpdir=./ventoy-${curver}
rm -rf $tmpmnt
mkdir -p $tmpmnt
mount ${LOOP}p2 $tmpmnt
mkdir -p $tmpmnt/grub
# First copy grub.cfg file, to make it locate at front of the part2
2021-01-29 04:54:04 -05:00
cp $OPT ./grub/grub.cfg $tmpmnt/grub/
ls -1 ./grub/ | grep -v 'grub\.cfg' | while read line; do
2021-01-29 04:54:04 -05:00
cp $OPT ./grub/$line $tmpmnt/grub/
done
2021-01-29 04:54:04 -05:00
cp $OPT ./ventoy $tmpmnt/
cp $OPT ./EFI $tmpmnt/
cp $OPT ./tool/ENROLL_THIS_KEY_IN_MOKMANAGER.cer $tmpmnt/
mkdir -p $tmpmnt/tool
2021-08-18 11:00:11 -04:00
# cp $OPT ./tool/i386/mount.exfat-fuse $tmpmnt/tool/mount.exfat-fuse_i386
# cp $OPT ./tool/x86_64/mount.exfat-fuse $tmpmnt/tool/mount.exfat-fuse_x86_64
# cp $OPT ./tool/aarch64/mount.exfat-fuse $tmpmnt/tool/mount.exfat-fuse_aarch64
# to save space
cp $OPT ./tool/i386/vtoygpt $tmpmnt/tool/mount.exfat-fuse_i386
cp $OPT ./tool/x86_64/vtoygpt $tmpmnt/tool/mount.exfat-fuse_x86_64
cp $OPT ./tool/aarch64/vtoygpt $tmpmnt/tool/mount.exfat-fuse_aarch64
2021-04-21 07:40:54 -04:00
2020-07-22 11:30:01 -04:00
rm -f $tmpmnt/grub/i386-pc/*.img
umount $tmpmnt && rm -rf $tmpmnt
rm -rf $tmpdir
mkdir -p $tmpdir/boot
mkdir -p $tmpdir/ventoy
echo $curver > $tmpdir/ventoy/version
dd if=$LOOP of=$tmpdir/boot/boot.img bs=1 count=512 status=none
dd if=$LOOP of=$tmpdir/boot/core.img bs=512 count=2047 skip=1 status=none
xz --check=crc32 $tmpdir/boot/core.img
2021-01-29 04:54:04 -05:00
cp $OPT ./tool $tmpdir/
2020-07-18 10:06:59 -04:00
rm -f $tmpdir/ENROLL_THIS_KEY_IN_MOKMANAGER.cer
2021-01-29 04:54:04 -05:00
cp $OPT Ventoy2Disk.sh $tmpdir/
cp $OPT VentoyWeb.sh $tmpdir/
cp $OPT VentoyGUI* $tmpdir/
2021-08-01 09:50:36 -04:00
2021-09-22 02:44:50 -04:00
2021-01-29 04:54:04 -05:00
cp $OPT README $tmpdir/
cp $OPT plugin $tmpdir/
cp $OPT CreatePersistentImg.sh $tmpdir/
2021-05-29 07:42:16 -04:00
cp $OPT ExtendPersistentImg.sh $tmpdir/
2020-05-24 08:43:31 -04:00
dos2unix -q $tmpdir/Ventoy2Disk.sh
dos2unix -q $tmpdir/VentoyWeb.sh
2021-08-01 09:50:36 -04:00
2021-09-22 02:44:50 -04:00
2020-05-30 08:13:04 -04:00
dos2unix -q $tmpdir/CreatePersistentImg.sh
2021-05-29 07:42:16 -04:00
dos2unix -q $tmpdir/ExtendPersistentImg.sh
cp $OPT ../LinuxGUI/WebUI $tmpdir/
sed 's/.*SCRIPT_DEL_THIS \(.*\)/\1/g' -i $tmpdir/WebUI/index.html
#32MB disk img
dd status=none if=$LOOP of=$tmpdir/ventoy/ventoy.disk.img bs=512 count=$VENTOY_SECTOR_NUM skip=$part2_start_sector
xz --check=crc32 $tmpdir/ventoy/ventoy.disk.img
losetup -d $LOOP && rm -f img.bin
rm -f ventoy-${curver}-linux.tar.gz
CurDir=$PWD
for d in i386 x86_64 aarch64 mips64el; do
2020-12-11 18:56:52 -05:00
cd $tmpdir/tool/$d
for file in $(ls); do
if [ "$file" != "xzcat" ]; then
if echo "$file" | grep -q '^Ventoy2Disk'; then
chmod +x $file
else
xz --check=crc32 $file
fi
2020-12-11 18:56:52 -05:00
fi
done
cd $CurDir
done
2020-08-29 01:12:36 -04:00
#chmod
find $tmpdir/ -type d -exec chmod 755 "{}" +
find $tmpdir/ -type f -exec chmod 644 "{}" +
chmod +x $tmpdir/Ventoy2Disk.sh
chmod +x $tmpdir/VentoyWeb.sh
chmod +x $tmpdir/VentoyGUI*
cp $OPT $LANG_DIR/languages.json $tmpdir/tool/
2021-08-01 09:50:36 -04:00
2021-09-22 02:44:50 -04:00
2020-08-29 01:12:36 -04:00
chmod +x $tmpdir/CreatePersistentImg.sh
2021-07-15 13:03:01 -04:00
chmod +x $tmpdir/ExtendPersistentImg.sh
2020-08-29 01:12:36 -04:00
tar -czvf ventoy-${curver}-linux.tar.gz $tmpdir
2020-08-29 01:12:36 -04:00
rm -f ventoy-${curver}-windows.zip
2021-01-29 04:54:04 -05:00
cp $OPT Ventoy2Disk*.exe $tmpdir/
cp $OPT $LANG_DIR/languages.json $tmpdir/ventoy/
rm -rf $tmpdir/tool
rm -f $tmpdir/*.sh
2021-09-22 02:44:50 -04:00
rm -f $tmpdir/VentoyGUI.*
rm -rf $tmpdir/WebUI
2020-07-22 11:30:01 -04:00
rm -f $tmpdir/README
zip -r ventoy-${curver}-windows.zip $tmpdir/
rm -rf $tmpdir
2021-01-29 04:54:04 -05:00
echo "=============== run livecd.sh ==============="
2021-02-06 07:39:25 -05:00
cd ../LiveCD
2021-01-29 07:58:02 -05:00
sh livecd.sh $1
2020-09-02 07:29:19 -04:00
cd $CurDir
mv ../LiveCD/ventoy*.iso ./
if [ -e ventoy-${curver}-windows.zip ] && [ -e ventoy-${curver}-linux.tar.gz ]; then
echo -e "\n ============= SUCCESS =================\n"
else
echo -e "\n ============= FAILED =================\n"
exit 1
fi
2020-05-30 08:13:04 -04:00
rm -f log.txt