diff options
| author | Amlal <amlal.elmahrouss@icloud.com> | 2025-01-25 13:02:30 +0100 |
|---|---|---|
| committer | Amlal <amlal.elmahrouss@icloud.com> | 2025-01-25 13:02:30 +0100 |
| commit | ede6c1e0fd670d5af1c62ab52847fc518cfd4e9c (patch) | |
| tree | 6c06cd1239bf279ed94623146b9606669da98a1e /dev/Kernel/src/FS | |
| parent | bd2b4ed76032cbfb997a9452bdd221dfab9edd82 (diff) | |
NeKernel 1.0.0
- SMP scheduling.
- Ne Filesystem.
- Functional microkernel.
- Working AMD64 support.
- WiP ARM64 support.
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel/src/FS')
| -rw-r--r-- | dev/Kernel/src/FS/NeFS.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev/Kernel/src/FS/NeFS.cc b/dev/Kernel/src/FS/NeFS.cc index 231cbfe1..e0561d21 100644 --- a/dev/Kernel/src/FS/NeFS.cc +++ b/dev/Kernel/src/FS/NeFS.cc @@ -100,7 +100,7 @@ _Output BOOL NeFileSystemParser::CreateFork(_Input NFS_FORK_STRUCT& the_fork) if (cur_fork.Flags & kNeFSFlagCreated) { - kcout << "Fork already exists.\r"; + kcout << "Error: Fork does exists.\r"; /// sanity check. if (StringBuilder::Equals(cur_fork.ForkName, the_fork.ForkName) && @@ -143,17 +143,17 @@ _Output BOOL NeFileSystemParser::CreateFork(_Input NFS_FORK_STRUCT& the_fork) drv.fPacket.fPacketSize = sizeof(NFS_FORK_STRUCT); drv.fPacket.fPacketContent = &the_fork; - kcout << "Writing fork...\r"; + kcout << "Writing fork metadata...\r"; // drv.fOutput(drv.fPacket); fs_ifs_write(&kMountpoint, drv, MountpointInterface::kDriveIndexA); /// log what we have now. - kcout << "Wrote fork data at: " << hex_number(the_fork.DataOffset) + kcout << "Fork offset is at: " << hex_number(the_fork.DataOffset) << endl; - kcout << "Wrote fork at: " << hex_number(lba) << endl; + kcout << "Wrote fork metadata at: " << hex_number(lba) << endl; return YES; } |
