From 4d0939e2853ffd9d49b83524923351f9776866d7 Mon Sep 17 00:00:00 2001 From: Alexis211 Date: Sat, 28 Nov 2009 12:36:01 +0100 Subject: Caching mechanism added and floppy driver fixed on qemu/vbox --- Source/Kernel/VFS/VFS.ns.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'Source/Kernel/VFS/VFS.ns.cpp') diff --git a/Source/Kernel/VFS/VFS.ns.cpp b/Source/Kernel/VFS/VFS.ns.cpp index 6a5fe4e..3b59c5a 100644 --- a/Source/Kernel/VFS/VFS.ns.cpp +++ b/Source/Kernel/VFS/VFS.ns.cpp @@ -90,7 +90,6 @@ bool mount(String str, VirtualTerminal* vt, multiboot_info_t *mbd) { *vt << "Syntax: :[]::[:[:[ro|rw]]]\n"; return false; } - if (fs[1] == "") fs[1] = "block"; if (fs.size() < 5) fs.push(""); if (fs.size() < 6) fs.push("ro"); //By default, mount file systems read-only BlockDevice* d = Part::dev(fs[1], fs[2].toInt()); -- cgit v1.2.3