summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xSource/Kernel/Melon.kebin609187 -> 608375 bytes
-rw-r--r--Source/Kernel/Shell/KernelShell.class.cpp3
2 files changed, 2 insertions, 1 deletions
diff --git a/Source/Kernel/Melon.ke b/Source/Kernel/Melon.ke
index 61c87df..9f7a055 100755
--- a/Source/Kernel/Melon.ke
+++ b/Source/Kernel/Melon.ke
Binary files differ
diff --git a/Source/Kernel/Shell/KernelShell.class.cpp b/Source/Kernel/Shell/KernelShell.class.cpp
index 4232cd9..e2fbb69 100644
--- a/Source/Kernel/Shell/KernelShell.class.cpp
+++ b/Source/Kernel/Shell/KernelShell.class.cpp
@@ -3,6 +3,7 @@
#include <DeviceManager/Kbd.ns.h>
#include <Library/Rand.ns.h>
#include <Library/SimpleList.class.h>
+#include <VFS/VFS.ns.h>
u32int KernelShell::m_instances = 0;
@@ -62,7 +63,7 @@ u32int KernelShell::run() {
while (1) {
m_vt->setColor(SHELL_LIGHTCOLOR);
- *m_vt << "[" << m_cwd->getName() << "]# ";
+ *m_vt << VFS::path(m_cwd) << " : ";
m_vt->setColor(SHELL_ENTRYCOLOR);
Vector<String> tokens = m_vt->readLine().split(" ");
m_vt->setColor(SHELL_FGCOLOR);