diff --git a/sys/fs/fat/fat.c b/sys/fs/fat/fat.c index 19d67c4..7caf221 100644 --- a/sys/fs/fat/fat.c +++ b/sys/fs/fat/fat.c @@ -66,7 +66,7 @@ // List root directory fl_listdirectory("/bin/"); // Create File - /* + file = fl_fopen("/file.bin", "w"); unsigned char data[] = { 1, 2, 3, 4 }; if (file) @@ -80,7 +80,7 @@ // Close file fl_fclose(file); - + /* fl_listdirectory("/"); // Delete File diff --git a/sys/kernel/vfs_calls.c b/sys/kernel/vfs_calls.c index fcda2b4..0f49352 100644 --- a/sys/kernel/vfs_calls.c +++ b/sys/kernel/vfs_calls.c @@ -319,7 +319,7 @@ else { getfd(td, &fd, uap->fd); - kprintf("[fd: %i:0x%X, fd_type: %i]", uap->fd, fd, fd->fd_type); + //kprintf("[fd: %i:0x%X, fd_type: %i]", uap->fd, fd, fd->fd_type); switch (fd->fd_type) { case 3: /* XXX - Temp Pipe Stuff */