diff --git a/ableos/src/filesystem/ext2.rs b/ableos/src/filesystem/ext2.rs index 831f475..f1f071d 100644 --- a/ableos/src/filesystem/ext2.rs +++ b/ableos/src/filesystem/ext2.rs @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2022, Umut İnan Erdoğan + * + * SPDX-License-Identifier: MPL-2.0 + */ + use ext2::fs::Ext2; use ext2::sector::SectorSize; use ext2::volume::Volume; diff --git a/ableos/src/filesystem/mod.rs b/ableos/src/filesystem/mod.rs index 36f3e57..d2c629e 100644 --- a/ableos/src/filesystem/mod.rs +++ b/ableos/src/filesystem/mod.rs @@ -31,9 +31,6 @@ where /// A VFS node, that can either be a file or a directory. pub struct FsNode { - // FIXME: move the file name into the directory listing to implement hard - // links - name: String, flags: FsNodeFlags, length: u32, // in bytes inode: u32, // implementation specific identifier for the node