diff --git a/kickstart/files/kickstart.cfg b/kickstart/files/kickstart.cfg index f497ab86..14c975bd 100644 --- a/kickstart/files/kickstart.cfg +++ b/kickstart/files/kickstart.cfg @@ -2490,10 +2490,10 @@ if [ ! -z "${insthwsettle}" ]; then fi fi -# Search the install kernel command line for the multi-drivers-switch= +# Search the install kernel command line for the out-of-tree-drivers= # option and if present propagate that to the disk boot kernel options. CMDLINE=`cat /proc/cmdline` -param="multi-drivers-switch" +param="out-of-tree-drivers" for option in ${CMDLINE} ; do opt=${option%%=*} if [ "${param}" = "${opt}" ]; then diff --git a/kickstart/files/miniboot.cfg b/kickstart/files/miniboot.cfg index db37b70e..d34d47e5 100644 --- a/kickstart/files/miniboot.cfg +++ b/kickstart/files/miniboot.cfg @@ -2649,10 +2649,10 @@ if [ -n "${extra_boot_params}" ]; then add_kernel_option "${extra_boot_params}" fi -# Search the install kernel command line for the multi-drivers-switch= +# Search the install kernel command line for the out-of-tree-drivers= # option and if present propagate that to the disk boot kernel options. CMDLINE=`cat /proc/cmdline` -param="multi-drivers-switch" +param="out-of-tree-drivers" for option in ${CMDLINE} ; do opt=${option%%=*} if [ "${param}" = "${opt}" ]; then