The "root=" option is interpreted by the kernel sometimes and passed on to userspace other times. Based on whether the "root=" boot command line option is specified, the initramfs uses tmpfs or ramfs as the rootfs. This is a temporary patch that removes the "root=" test in the decision to use tmpfs or ramfs as the rootfs. Modify userspace applications (eg. dracut, systemd) to support "ROOT=" in addition to "root=". (Not to be upstreamed.) Signed-off-by: Mimi Zohar <zohar@xxxxxxxxxxxxxxxxxx> --- init/do_mounts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/do_mounts.c b/init/do_mounts.c index 82f2288..b2f5e7d 100644 --- a/init/do_mounts.c +++ b/init/do_mounts.c @@ -622,7 +622,7 @@ int __init init_rootfs(void) if (err) return err; - if (IS_ENABLED(CONFIG_TMPFS) && !saved_root_name[0] && + if (IS_ENABLED(CONFIG_TMPFS) && (!root_fs_names || strstr(root_fs_names, "tmpfs"))) { err = shmem_init(); is_tmpfs = true; -- 1.8.1.4 -- To unsubscribe from this list: send the line "unsubscribe initramfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html