aboutsummaryrefslogtreecommitdiff
path: root/kernel/filesystem/src/ext2/ext2_filesystem.cpp
blob: 7111d13d5dcecc67f701e32eb877f5eebad86933 (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/device.hpp"

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