summaryrefslogtreecommitdiff
path: root/Source/Kernel/Shell
diff options
context:
space:
mode:
authorAlexis211 <alexis211@gmail.com>2009-11-29 17:06:47 +0100
committerAlexis211 <alexis211@gmail.com>2009-11-29 17:06:47 +0100
commit32ffa508b6ee9c9b36e3a054d218ee90caea4c8b (patch)
tree4136164e7fb52005d57782c9ae70da89eca85807 /Source/Kernel/Shell
parent2be9def10e048b3245bb14e9fb57324c11c527d6 (diff)
downloadMelon-32ffa508b6ee9c9b36e3a054d218ee90caea4c8b.tar.gz
Melon-32ffa508b6ee9c9b36e3a054d218ee90caea4c8b.zip
make qemu-hdd now works great
Diffstat (limited to 'Source/Kernel/Shell')
-rw-r--r--Source/Kernel/Shell/KernelShell-sys.class.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Kernel/Shell/KernelShell-sys.class.cpp b/Source/Kernel/Shell/KernelShell-sys.class.cpp
index 06af11d..da5378b 100644
--- a/Source/Kernel/Shell/KernelShell-sys.class.cpp
+++ b/Source/Kernel/Shell/KernelShell-sys.class.cpp
@@ -64,7 +64,7 @@ void KernelShell::part(Vector<String>& args) {
void KernelShell::mount(Vector<String>& args) {
if (args.size() == 1) {
for (u32int i = 0; i < VFS::filesystems.size(); i++) {
- *m_vt << VFS::filesystems[i]->getDevDescription() << " on " << VFS::path(VFS::filesystems[i]->getRootNode()) << "\n";
+ *m_vt << VFS::filesystems[i]->getIdentifier() << "\n";
}
} else if (args.size() == 2) {
if (args[1] == "help") {