From 2950b3702893693e6ff5f231eaca1bf3c377c355 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Sun, 8 Sep 2019 16:09:48 -0400 Subject: [PATCH] dracut: increase base.conf priority from 00 to 05 The Makefile invokes dracut with a custom confdir. However dracut will still pull site configuration from /usr/lib/dracut/dracut.conf.d/, which on Fedora contains a 01-dist.conf that sets among other things early_microcode="yes". Because 01-dist.conf is processed after 00-base.conf, kata's early_microcode="no" is overridden, which isn't intended. Rename 00-base.conf to 05-base.conf to sidestep this Fixes: #354 Signed-off-by: Cole Robinson --- dracut/dracut.conf.d/{00-base.conf => 05-base.conf} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename dracut/dracut.conf.d/{00-base.conf => 05-base.conf} (100%) diff --git a/dracut/dracut.conf.d/00-base.conf b/dracut/dracut.conf.d/05-base.conf similarity index 100% rename from dracut/dracut.conf.d/00-base.conf rename to dracut/dracut.conf.d/05-base.conf