diff --git a/INSTALL/ventoy_pack.sh b/INSTALL/ventoy_pack.sh index 3e62539a..e9cfe9e9 100644 --- a/INSTALL/ventoy_pack.sh +++ b/INSTALL/ventoy_pack.sh @@ -137,12 +137,8 @@ zip -r ventoy-${curver}-windows.zip $tmpdir/ rm -rf $tmpdir -cd ../LiveCD -if [ "$1" = "CI" ]; then - echo "=============== run docker_ci.sh ===============" - sh docker_ci.sh $1 -fi echo "=============== run livecd.sh ===============" +cd ../LiveCD sh livecd.sh $1 cd $CurDir diff --git a/LiveCD/ISO/EFI/boot/corepure64.gz b/LiveCD/ISO/EFI/boot/corepure64.gz new file mode 100644 index 00000000..479ec090 Binary files /dev/null and b/LiveCD/ISO/EFI/boot/corepure64.gz differ diff --git a/LiveCD/ISO/EFI/boot/modules64.gz b/LiveCD/ISO/EFI/boot/modules64.gz new file mode 100644 index 00000000..ef02c5dd Binary files /dev/null and b/LiveCD/ISO/EFI/boot/modules64.gz differ diff --git a/LiveCD/ISO/EFI/boot/vmlinuz64 b/LiveCD/ISO/EFI/boot/vmlinuz64 new file mode 100644 index 00000000..d9089670 Binary files /dev/null and b/LiveCD/ISO/EFI/boot/vmlinuz64 differ diff --git a/LiveCD/VTOY/ventoy/tcz/dosfstools.tcz b/LiveCD/VTOY/ventoy/tcz/dosfstools.tcz new file mode 100644 index 00000000..f9377b91 Binary files /dev/null and b/LiveCD/VTOY/ventoy/tcz/dosfstools.tcz differ diff --git a/LiveCD/VTOY/ventoy/tcz/glib2.tcz b/LiveCD/VTOY/ventoy/tcz/glib2.tcz new file mode 100644 index 00000000..e6fd5cc8 Binary files /dev/null and b/LiveCD/VTOY/ventoy/tcz/glib2.tcz differ diff --git a/LiveCD/VTOY/ventoy/tcz/libffi.tcz b/LiveCD/VTOY/ventoy/tcz/libffi.tcz new file mode 100644 index 00000000..ee2ff095 Binary files /dev/null and b/LiveCD/VTOY/ventoy/tcz/libffi.tcz differ diff --git a/LiveCD/VTOY/ventoy/tcz/liblvm2.tcz b/LiveCD/VTOY/ventoy/tcz/liblvm2.tcz new file mode 100644 index 00000000..1da6c972 Binary files /dev/null and b/LiveCD/VTOY/ventoy/tcz/liblvm2.tcz differ diff --git a/LiveCD/VTOY/ventoy/tcz/ncursesw.tcz b/LiveCD/VTOY/ventoy/tcz/ncursesw.tcz new file mode 100644 index 00000000..114149bf Binary files /dev/null and b/LiveCD/VTOY/ventoy/tcz/ncursesw.tcz differ diff --git a/LiveCD/VTOY/ventoy/tcz/parted.tcz b/LiveCD/VTOY/ventoy/tcz/parted.tcz new file mode 100644 index 00000000..6205d2f8 Binary files /dev/null and b/LiveCD/VTOY/ventoy/tcz/parted.tcz differ diff --git a/LiveCD/VTOY/ventoy/tcz/readline.tcz b/LiveCD/VTOY/ventoy/tcz/readline.tcz new file mode 100644 index 00000000..a069c35d Binary files /dev/null and b/LiveCD/VTOY/ventoy/tcz/readline.tcz differ diff --git a/LiveCD/VTOY/ventoy/tcz/udev-lib.tcz b/LiveCD/VTOY/ventoy/tcz/udev-lib.tcz new file mode 100644 index 00000000..bd5b1629 Binary files /dev/null and b/LiveCD/VTOY/ventoy/tcz/udev-lib.tcz differ diff --git a/LiveCD/docker_ci.sh b/LiveCD/docker_ci.sh deleted file mode 100644 index 77660e6d..00000000 --- a/LiveCD/docker_ci.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -VENTOY_PATH=$PWD/../ - -for i in vmlinuz64 corepure64.gz modules64.gz; do - wget -q -P ISO/EFI/boot/ http://www.tinycorelinux.net/11.x/x86_64/release/distribution_files/$i -done - -[ -d VTOY/ventoy/tcz ] || mkdir -p VTOY/ventoy/tcz - -for i in dosfstools.tcz glib2.tcz libffi.tcz liblvm2.tcz ncursesw.tcz parted.tcz readline.tcz udev-lib.tcz; do - wget -q -P VTOY/ventoy/tcz/ http://distro.ibiblio.org/tinycorelinux/11.x/x86_64/tcz/$i -done