diff --git a/kickstart/files/kickstart.cfg b/kickstart/files/kickstart.cfg
index 7a699c3f..fba8c9bc 100644
--- a/kickstart/files/kickstart.cfg
+++ b/kickstart/files/kickstart.cfg
@@ -2492,10 +2492,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 67a3d90d..3a62bd54 100644
--- a/kickstart/files/miniboot.cfg
+++ b/kickstart/files/miniboot.cfg
@@ -2651,10 +2651,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