diff options
author | Liav A <liavalb@gmail.com> | 2022-08-10 22:08:41 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-10-03 11:12:35 +0200 |
commit | 4e0f85432a5d7b53555da25c39dee6f6d093f1b9 (patch) | |
tree | 2a156672d1273e6a9a3fc50f4fae296162a547dc /Kernel/Storage/StorageDevice.h | |
parent | 37f527be9c90c5b495f1edb1b4df8494da3fe12c (diff) | |
download | serenity-4e0f85432a5d7b53555da25c39dee6f6d093f1b9.zip |
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.
Diffstat (limited to 'Kernel/Storage/StorageDevice.h')
-rw-r--r-- | Kernel/Storage/StorageDevice.h | 1 |
1 files changed, 0 insertions, 1 deletions
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, |