]> glassweightruler.freedombox.rocks Git - Ventoy.git/commitdiff
Add LiveCD binaries
authorlongpanda <admin@ventoy.net>
Sat, 6 Feb 2021 12:39:25 +0000 (20:39 +0800)
committerlongpanda <admin@ventoy.net>
Sat, 6 Feb 2021 12:39:25 +0000 (20:39 +0800)
13 files changed:
INSTALL/ventoy_pack.sh
LiveCD/ISO/EFI/boot/corepure64.gz [new file with mode: 0644]
LiveCD/ISO/EFI/boot/modules64.gz [new file with mode: 0644]
LiveCD/ISO/EFI/boot/vmlinuz64 [new file with mode: 0644]
LiveCD/VTOY/ventoy/tcz/dosfstools.tcz [new file with mode: 0644]
LiveCD/VTOY/ventoy/tcz/glib2.tcz [new file with mode: 0644]
LiveCD/VTOY/ventoy/tcz/libffi.tcz [new file with mode: 0644]
LiveCD/VTOY/ventoy/tcz/liblvm2.tcz [new file with mode: 0644]
LiveCD/VTOY/ventoy/tcz/ncursesw.tcz [new file with mode: 0644]
LiveCD/VTOY/ventoy/tcz/parted.tcz [new file with mode: 0644]
LiveCD/VTOY/ventoy/tcz/readline.tcz [new file with mode: 0644]
LiveCD/VTOY/ventoy/tcz/udev-lib.tcz [new file with mode: 0644]
LiveCD/docker_ci.sh [deleted file]

index 3e62539a4e06dd0321e6bc92b848819f1acbca96..e9cfe9e92420ea5323e890722fff552cc9a9dab3 100644 (file)
@@ -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 (file)
index 0000000..479ec09
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 (file)
index 0000000..ef02c5d
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 (file)
index 0000000..d908967
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 (file)
index 0000000..f9377b9
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 (file)
index 0000000..e6fd5cc
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 (file)
index 0000000..ee2ff09
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 (file)
index 0000000..1da6c97
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 (file)
index 0000000..114149b
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 (file)
index 0000000..6205d2f
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 (file)
index 0000000..a069c35
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 (file)
index 0000000..bd5b162
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 (file)
index 77660e6..0000000
+++ /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