From e1ffbad431123d2beb44b6a5ef067af50bf52458 Mon Sep 17 00:00:00 2001 From: longpanda Date: Thu, 1 Apr 2021 12:02:32 +0800 Subject: [PATCH] Support RHEL6/CentOS6 auto install --- IMG/cpio/ventoy/hook/rhel6/ventoy-hook.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/IMG/cpio/ventoy/hook/rhel6/ventoy-hook.sh b/IMG/cpio/ventoy/hook/rhel6/ventoy-hook.sh index d2f0f6ba..cfbe43fb 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