summaryrefslogtreecommitdiffhomepage
path: root/Private/Source
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-13 16:21:59 +0000
committerAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-13 16:21:59 +0000
commitddc819e396d7b9626b832b092f6298c0faaccde4 (patch)
tree81527a21bdf4ae8f14fb8acd0ff04d9d127f24d3 /Private/Source
parenta4af4dc720a0ba8d4c3a23e05825989329a48a2f (diff)
parentb75417b44d5f63ea0ead68cbe8f62bd76df62229 (diff)
Merge branch 'HCR-15' into 'trunk'
HCR-15: Load Kernel into memory. See merge request mahrouss-logic/micro-kernel!5
Diffstat (limited to 'Private/Source')
-rw-r--r--Private/Source/DeviceManager.cxx (renamed from Private/Source/Device.cxx)2
-rw-r--r--Private/Source/DriveManager.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/Private/Source/Device.cxx b/Private/Source/DeviceManager.cxx
index ae72fdad..e5b84bd3 100644
--- a/Private/Source/Device.cxx
+++ b/Private/Source/DeviceManager.cxx
@@ -7,4 +7,4 @@
* ========================================================
*/
-#include <KernelKit/Device.hpp>
+#include <KernelKit/DeviceManager.hpp>
diff --git a/Private/Source/DriveManager.cxx b/Private/Source/DriveManager.cxx
index bc100a1a..371758b1 100644
--- a/Private/Source/DriveManager.cxx
+++ b/Private/Source/DriveManager.cxx
@@ -33,7 +33,7 @@ bool DriveSelector::Mount(DriveTraits *drive) {
fDrive = drive;
fDrive->fMount();
- kcout << "[Krnl] mounted: " << fDrive->fName << "\n";
+ kcout << "Mount: " << fDrive->fName << "\n";
return true;
}
@@ -49,7 +49,7 @@ DriveTraits *DriveSelector::Unmount() {
fDrive->fUnmount();
fDrive = nullptr;
- kcout << "[Krnl] unmounted: " << fDrive->fName << "\n";
+ kcout << "Unmount: " << fDrive->fName << "\n";
return drivePointer;
}