Mount boot drive to '\' by default
This commit is contained in:
parent
4ec95a6a52
commit
fae958815f
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@
|
|||
|
||||
void axboot_init()
|
||||
{
|
||||
if (!vfs_init("/")) {
|
||||
if (!vfs_init("\\")) {
|
||||
debug("axboot_init(): Failed to mount boot drive! Halting...");
|
||||
// TODO: Halt
|
||||
while (1);
|
||||
|
@ -31,7 +31,7 @@ void axboot_init()
|
|||
|
||||
// read kernel -> test read
|
||||
char *buffer = NULL;
|
||||
vfs_read("/System/axkrnl", buffer);
|
||||
vfs_read("\\System\\axkrnl", buffer);
|
||||
|
||||
mem_free(buffer);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue