diff --git a/src/pylorax/__init__.py b/src/pylorax/__init__.py index 09b4aff5..c1542de6 100644 --- a/src/pylorax/__init__.py +++ b/src/pylorax/__init__.py @@ -325,7 +325,7 @@ class Lorax(BaseLoraxClass): workdir=self.workdir) logger.info("rebuilding initramfs images") - dracut_args = ["--xz", "--install", "/.buildstamp"] + dracut_args = ["--xz", "--install", "/.buildstamp", "--no-early-microcode"] anaconda_args = dracut_args + ["--add", "anaconda pollcdrom"] # ppc64 cannot boot an initrd > 32MiB so remove some drivers diff --git a/src/sbin/livemedia-creator b/src/sbin/livemedia-creator index 279c55cc..6d6542d6 100755 --- a/src/sbin/livemedia-creator +++ b/src/sbin/livemedia-creator @@ -63,7 +63,7 @@ except ImportError: # Default parameters for rebuilding initramfs, override with --dracut-args DRACUT_DEFAULT = ["--xz", "--add", "livenet dmsquash-live convertfs pollcdrom", - "--omit", "plymouth", "--no-hostonly", "--debug"] + "--omit", "plymouth", "--no-hostonly", "--debug", "--no-early-microcode"] ROOT_PATH = "/mnt/sysimage/" RUNTIME = "images/install.img"