package embox.fs

@DefaultImpl(rootfs_oldfs)
abstract module root_file_system {
}

module rootfs_oldfs extends root_file_system {
	option string fstype = "initfs"
	option string bdev = ""

	source "rootfs_oldfs.c"

	@NoRuntime depends driver.devfs_old
	depends node
	depends embox.fs.filesystem
	depends embox.kernel.task.api
	depends embox.fs.syslib.file_system_full
	depends embox.compat.libc.str
}

module rootfs_dvfs extends root_file_system {
	option string fstype = "initfs"
	option string bdev = ""

	source "rootfs_dvfs.c"

	depends embox.fs.dvfs.core
	depends embox.kernel.task.api
}
