X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Fvfs%2Fmain.c;h=cb798c198b7ce632058fa0b79635057ba3788958;hb=4ad6151eb6d3138c9070cb376f5ba9fa3ec511e8;hp=c0c37e1d5feeb4200f931085bd9d9e76a3f02add;hpb=9d85201216cb35e1b1e051b1d7cdc38eaa5befa4;p=tpg%2Facess2.git diff --git a/Kernel/vfs/main.c b/Kernel/vfs/main.c index c0c37e1d..cb798c19 100644 --- a/Kernel/vfs/main.c +++ b/Kernel/vfs/main.c @@ -52,13 +52,14 @@ int VFS_Init(void) giVFS_DriverFileID = SysFS_RegisterFile("VFS/Drivers", NULL, 0); if( VFS_Mount("root", "/", "rootfs", "") != 0 ) { - Panic("Unable to mount root (Where the **** is rootfs?)"); + Log_KernelPanic("VFS", "Unable to mount root (Where the **** is rootfs?)"); return -1; } VFS_MkDir("/Devices"); VFS_MkDir("/Mount"); VFS_Mount("dev", "/Devices", "devfs", ""); - + + Log_Debug("VFS", "Setting max files"); CFGINT(CFG_VFS_MAXFILES) = 32; return 0; } @@ -75,7 +76,7 @@ char *VFS_GetTruePath(const char *Path) tmp = VFS_GetAbsPath(Path); if(tmp == NULL) return NULL; //Log(" VFS_GetTruePath: tmp = '%s'", tmp); - node = VFS_ParsePath(tmp, &ret); + node = VFS_ParsePath(tmp, &ret, NULL); free(tmp); //Log(" VFS_GetTruePath: node=%p, ret='%s'", node, ret);