1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:18:11 +00:00

Revert "Kernel: Change Ext2FS to be backed by a file instead of a block device"

This reverts commit 6b59311d4b.

Reverting these changes since they broke things.
Fixes #1608.
This commit is contained in:
Andreas Kling 2020-04-03 21:20:51 +02:00
parent 9ae3cced76
commit c2a8bbcb59
10 changed files with 90 additions and 116 deletions

View file

@ -87,7 +87,7 @@ public:
int block_size() const { return m_block_size; }
virtual bool is_file_backed() const { return false; }
virtual bool is_disk_backed() const { return false; }
protected:
FS();