Merge "Use new kernel parameter in kickstarts"

This commit is contained in:
Zuul 2024-09-16 15:10:29 +00:00 committed by Gerrit Code Review
commit 05d93b240d
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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