diff options
author | Harald Hoyer <harald@redhat.com> | 2013-07-17 14:35:35 +0200 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2013-07-17 14:36:34 +0200 |
commit | 5bbfd48475abff52bbf43b3e97125e9f5394a60a (patch) | |
tree | e02970d49ff5a5d395208f85a56664e4659e19dd /dracut.sh | |
parent | c33488feb1d13feabbe47de5c06c1cc009596592 (diff) | |
download | dracut-5bbfd48475abff52bbf43b3e97125e9f5394a60a.tar.gz dracut-5bbfd48475abff52bbf43b3e97125e9f5394a60a.tar.bz2 dracut-5bbfd48475abff52bbf43b3e97125e9f5394a60a.zip |
dracut: do not enable early microcode inclusion by default
Diffstat (limited to 'dracut.sh')
-rwxr-xr-x | dracut.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -91,6 +91,7 @@ Creates initial ramdisk images for preloading modules firmwares, separated by : --kernel-only Only install kernel drivers and firmware files --no-kernel Do not install kernel drivers and firmware files + --early-microcode Combine early microcode with ramdisk --no-early-microcode Do not combine early microcode with ramdisk --kernel-cmdline [PARAMETERS] Specify default kernel command line parameters --strip Strip binaries in the initramfs @@ -379,6 +380,7 @@ while :; do -f|--force) force=yes;; --kernel-only) kernel_only="yes"; no_kernel="no";; --no-kernel) kernel_only="no"; no_kernel="yes";; + --early-microcode) early_microcode="yes";; --no-early-microcode) early_microcode="no";; --strip) do_strip_l="yes";; --nostrip) do_strip_l="no";; @@ -648,7 +650,6 @@ stdloglvl=$((stdloglvl + verbosity_mod_l)) [[ $show_modules_l ]] && show_modules=$show_modules_l [[ $nofscks_l ]] && nofscks="yes" [[ $ro_mnt_l ]] && ro_mnt="yes" -[[ ! $early_microcode ]] && early_microcode="yes" # eliminate IFS hackery when messing with fw_dir fw_dir=${fw_dir//:/ } |