From 4e0f85432a5d7b53555da25c39dee6f6d093f1b9 Mon Sep 17 00:00:00 2001 From: Liav A Date: Wed, 10 Aug 2022 22:08:41 +0300 Subject: Kernel/Storage: Remove the ramdisk implementation Nobody uses this because the x86 prekernel environment is corrupting the ramdisk image prior to running the actual kernel. In the future we can ensure that the prekernel doesn't corrupt the ramdisk if we want to bring support back. In addition to that, we could just use a RAM based filesystem to load whatever is needed like in Linux, without the need of additional filesystem driver. For the mentioned corruption problem, look at issue #9893. --- Kernel/Storage/StorageDevice.h | 1 - 1 file changed, 1 deletion(-) (limited to 'Kernel/Storage/StorageDevice.h') diff --git a/Kernel/Storage/StorageDevice.h b/Kernel/Storage/StorageDevice.h index 6f99e053e4..2732c44709 100644 --- a/Kernel/Storage/StorageDevice.h +++ b/Kernel/Storage/StorageDevice.h @@ -34,7 +34,6 @@ public: // and ATAPI is the exception to no-distinction rule. If we ever put SCSI support in the kernel, // we can create another enum class to put the distinction. enum class CommandSet { - PlainMemory, SCSI, ATA, NVMe, -- cgit v1.2.3