aboutsummaryrefslogtreecommitdiff
path: root/kernel/filesystem/src/ext2/ext2_filesystem.cpp
blob: bdd430de40eea20edfb902c7463119935ecd4e18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "filesystem/ext2/ext2_filesystem.hpp"

#include "devices/block_device.hpp"

namespace filesystem::ext2
{
  auto ext2_filesystem::mount(devices::block_device * block_device) -> int
  {
    if (!block_device)
    {
      return -1;  // TODO BA-FS26 panic or errorcode?
    }
    // TODO BA-FS26 implement
    return 0;
  }
}  // namespace filesystem::ext2