summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/KernelKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-01-17 17:07:39 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-01-17 17:07:39 +0100
commit144ab97968b7efd2eacfb281e4d152bcad859671 (patch)
treee4284f0ff58e8bb20f28dc494f4f6d9b95fb5c61 /src/kernel/KernelKit
parentab2b9719bcc90e7f67fdd156f8df95dbe3bd8a0c (diff)
feat: kernel: refactor devicemgr's devices path, sda becomes sd{}{}.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/kernel/KernelKit')
-rw-r--r--src/kernel/KernelKit/DeviceMgr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/KernelKit/DeviceMgr.h b/src/kernel/KernelKit/DeviceMgr.h
index bea5908c..958c882c 100644
--- a/src/kernel/KernelKit/DeviceMgr.h
+++ b/src/kernel/KernelKit/DeviceMgr.h
@@ -56,7 +56,7 @@ class IDevice {
return *this;
}
- virtual const char* Name() const { return "/devices/null"; }
+ virtual const char* Name() const { return kDeviceMgrRootDirPath "null"; }
operator bool() { return fOut && fIn; }