From: longpanda Date: Mon, 8 Mar 2021 08:18:22 +0000 (+0800) Subject: support new veket_20 X-Git-Tag: v1.0.38~8 X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/Ventoy.git/commitdiff_plain/83d91c525fa7e5c5a1866275a8f6bdcd09d62d90?ds=sidebyside support new veket_20 --- diff --git a/IMG/cpio/ventoy/hook/debian/veket-hook.sh b/IMG/cpio/ventoy/hook/debian/veket-hook.sh index 922e236..5093cbb 100644 --- a/IMG/cpio/ventoy/hook/debian/veket-hook.sh +++ b/IMG/cpio/ventoy/hook/debian/veket-hook.sh @@ -20,3 +20,10 @@ $SED '1 apmedia=usbhd' -i /init $SED "/^ *HAVE_PARTS=/a\ $BUSYBOX_PATH/sh $VTOY_PATH/hook/debian/veket-disk.sh" -i /init $SED "/^ *HAVE_PARTS=/a\ HAVE_PARTS='ventoy|iso9660'" -i /init + +if [ -d /dev ]; then + [ -e /dev/null ] || $BUSYBOX_PATH/mknod /dev/null c 1 3 +else + $BUSYBOX_PATH/mkdir /dev + $BUSYBOX_PATH/mknod /dev/null c 1 3 +fi diff --git a/IMG/cpio/ventoy/hook/debian/ventoy-hook.sh b/IMG/cpio/ventoy/hook/debian/ventoy-hook.sh index aafb506..9c4b50f 100644 --- a/IMG/cpio/ventoy/hook/debian/ventoy-hook.sh +++ b/IMG/cpio/ventoy/hook/debian/ventoy-hook.sh @@ -28,6 +28,12 @@ ventoy_get_debian_distro() { fi fi + if [ -e /DISTRO_SPECS ]; then + if $GREP -q veket /DISTRO_SPECS; then + echo 'veket'; return + fi + fi + if [ -e /init ]; then if $GREP -q PUPPYSFS /init; then if $GREP -q VEKETSFS /init; then diff --git a/IMG/cpio/ventoy/ventoy_chain.sh b/IMG/cpio/ventoy/ventoy_chain.sh index 1c52abb..7390832 100644 --- a/IMG/cpio/ventoy/ventoy_chain.sh +++ b/IMG/cpio/ventoy/ventoy_chain.sh @@ -315,6 +315,8 @@ ventoy_get_os_type() { if [ -f /DISTRO_SPECS ]; then if $GREP -q '[Pp]uppy' /DISTRO_SPECS; then echo 'debian'; return + elif $GREP -q 'veket' /DISTRO_SPECS; then + echo 'debian'; return fi fi