From: longpanda Date: Thu, 1 Apr 2021 04:02:32 +0000 (+0800) Subject: Support RHEL6/CentOS6 auto install X-Git-Tag: v1.0.40~10 X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/Ventoy.git/commitdiff_plain/e1ffbad431123d2beb44b6a5ef067af50bf52458?ds=sidebyside Support RHEL6/CentOS6 auto install --- diff --git a/IMG/cpio/ventoy/hook/rhel6/ventoy-hook.sh b/IMG/cpio/ventoy/hook/rhel6/ventoy-hook.sh index d2f0f6b..cfbe43f 100644 --- a/IMG/cpio/ventoy/hook/rhel6/ventoy-hook.sh +++ b/IMG/cpio/ventoy/hook/rhel6/ventoy-hook.sh @@ -26,3 +26,13 @@ ventoy_add_udev_rule "$VTOY_PATH/hook/rhel6/udev_disk_hook.sh %k" #loop7 was used by loader ventoy_add_kernel_udev_rule "loop6" "$VTOY_PATH/hook/rhel6/udev_disk_hook.sh %k" + +if [ -f $VTOY_PATH/autoinstall ]; then + $BUSYBOX_PATH/mv /sbin/loader /sbin/loader_bk + $BUSYBOX_PATH/mv $VTOY_PATH/tool/loader /sbin/loader + + RawCmdLine=$($BUSYBOX_PATH/cat /proc/cmdline) + echo -n "/sbin/loader_bk" > "/ventoy/loader_exec_file" + echo -n "--cmdline=$RawCmdLine ks=file:$VTOY_PATH/autoinstall" > "/ventoy/loader_exec_cmdline" + #echo 111 > "/ventoy/loader_debug" +fi