summaryrefslogtreecommitdiffhomepage
path: root/dev/zka/src
diff options
context:
space:
mode:
authorAmlal <amlal@el-mahrouss-logic.com>2024-10-24 20:11:21 +0200
committerAmlal <amlal@el-mahrouss-logic.com>2024-10-24 20:11:21 +0200
commitb0850d02b7fba8f0e16092c7609e928907d2521d (patch)
tree81ba785ba42607dff1df3538f305a23b8c2b1ce5 /dev/zka/src
parent52b4044ab4956597aee4c629ba5fe5ec8966beac (diff)
IMP: Doing a cleanup and finishing the first version of ZKA.
Signed-off-by: Amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'dev/zka/src')
-rw-r--r--dev/zka/src/FS/HPFS.cc12
-rw-r--r--dev/zka/src/FS/NeFS.cc4
-rw-r--r--dev/zka/src/NeFS+FileMgr.cc4
-rw-r--r--dev/zka/src/NeFS+IO.cc4
4 files changed, 17 insertions, 7 deletions
diff --git a/dev/zka/src/FS/HPFS.cc b/dev/zka/src/FS/HPFS.cc
index 0fb80079..e3af1e03 100644
--- a/dev/zka/src/FS/HPFS.cc
+++ b/dev/zka/src/FS/HPFS.cc
@@ -6,7 +6,17 @@
#ifdef __FSKIT_INCLUDES_HPFS__
-#include <FirmwareKit/GPT.h>
+#include <modules/AHCI/AHCI.h>
+#include <modules/ATA/ATA.h>
+#include <modules/Flash/Flash.h>
+#include <FSKit/HPFS.h>
+#include <KernelKit/LPC.h>
+#include <NewKit/Crc32.h>
+#include <NewKit/Stop.h>
+#include <NewKit/String.h>
+#include <NewKit/Utils.h>
#include <FirmwareKit/EPM.h>
+#include <KernelKit/UserProcessScheduler.h>
+#include <KernelKit/User.h>
#endif // ifdef __FSKIT_INCLUDES_HPFS__
diff --git a/dev/zka/src/FS/NeFS.cc b/dev/zka/src/FS/NeFS.cc
index 4c706f86..be3d407f 100644
--- a/dev/zka/src/FS/NeFS.cc
+++ b/dev/zka/src/FS/NeFS.cc
@@ -4,7 +4,7 @@
------------------------------------------- */
-#ifdef __FSKIT_USE_NEFS__
+#ifdef __FSKIT_INCLUDES_NEFS__
#include <modules/AHCI/AHCI.h>
#include <modules/ATA/ATA.h>
@@ -1054,4 +1054,4 @@ namespace Kernel::Detail
} // namespace Kernel::Detail
#endif // !__ZKA_MINIMAL_OS__
-#endif // ifdef __FSKIT_USE_NEFS__
+#endif // ifdef __FSKIT_INCLUDES_NEFS__
diff --git a/dev/zka/src/NeFS+FileMgr.cc b/dev/zka/src/NeFS+FileMgr.cc
index 3cc5400b..dcc9c3b2 100644
--- a/dev/zka/src/NeFS+FileMgr.cc
+++ b/dev/zka/src/NeFS+FileMgr.cc
@@ -8,7 +8,7 @@
#include <KernelKit/Heap.h>
#ifndef __ZKA_MINIMAL_OS__
-#ifdef __FSKIT_USE_NEFS__
+#ifdef __FSKIT_INCLUDES_NEFS__
/// @brief NeFS File manager.
/// BUGS: 0
@@ -244,5 +244,5 @@ namespace Kernel
}
} // namespace Kernel
-#endif // ifdef __FSKIT_USE_NEFS__
+#endif // ifdef __FSKIT_INCLUDES_NEFS__
#endif // ifndef __ZKA_MINIMAL_OS__
diff --git a/dev/zka/src/NeFS+IO.cc b/dev/zka/src/NeFS+IO.cc
index 010ec3f2..5a5f60c6 100644
--- a/dev/zka/src/NeFS+IO.cc
+++ b/dev/zka/src/NeFS+IO.cc
@@ -17,7 +17,7 @@
*
*************************************************************/
-#ifdef __FSKIT_USE_NEFS__
+#ifdef __FSKIT_INCLUDES_NEFS__
#include <FirmwareKit/EPM.h>
@@ -98,4 +98,4 @@ Int32 fs_newfs_write(MountpointInterface* Mnt, DriveTrait& DrvTrait, Int32 DrvIn
return DrvTrait.fPacket.fPacketGood;
}
-#endif // ifdef __FSKIT_USE_NEFS__
+#endif // ifdef __FSKIT_INCLUDES_NEFS__