diff --git a/kickstart/files/miniboot.cfg b/kickstart/files/miniboot.cfg index 3428610d..58ad6851 100644 --- a/kickstart/files/miniboot.cfg +++ b/kickstart/files/miniboot.cfg @@ -2534,6 +2534,13 @@ if [ ! -z "${insthwsettle}" ]; then fi fi +if [ -n "${extra_boot_params}" ]; then + # Strip out any commas and replace with space. + extra_boot_params=${extra_boot_params//,/ } # replace all ',' with ' ' + ilog "Adding extra_boot_params to kernel options: ${extra_boot_params}" + add_kernel_option "${extra_boot_params}" +fi + ######################################################################################## ilog "Adding these kernel params to disk boot: ${KERN_OPTS}"