diff --git a/src/pylorax/__init__.py b/src/pylorax/__init__.py index 6db32dda..8ae3077b 100644 --- a/src/pylorax/__init__.py +++ b/src/pylorax/__init__.py @@ -234,7 +234,7 @@ class Lorax(BaseLoraxClass): runtime=runtime, templatedir=templatedir) logger.info("rebuilding initramfs images") - dracut_args=["--xz", "--add", "livenet", "--omit", "plymouth"] + dracut_args=["--xz", "--add", "livenet", "--add", "convertfs", "--omit", "plymouth"] treebuilder.rebuild_initrds(add_args=dracut_args) logger.info("populating output tree and building boot images") diff --git a/src/sbin/livemedia-creator b/src/sbin/livemedia-creator index 4a4576ef..23c9b3f3 100755 --- a/src/sbin/livemedia-creator +++ b/src/sbin/livemedia-creator @@ -50,9 +50,9 @@ from pylorax.imgutils import PartitionMount, mksparse from pylorax.executils import execWithRedirect, execWithCapture -# Default parameters for rebuilding initramfs, overrice with --dracut-args +# Default parameters for rebuilding initramfs, override with --dracut-args DRACUT_DEFAULT = ["--xz", "--add", "livenet", "--add", "dmsquash-live", - "--omit", "plymouth"] + "--add", "convertfs", "--omit", "plymouth"] class LogRequestHandler(SocketServer.BaseRequestHandler):