feat: moved file system code around

This commit is contained in:
2021-08-12 21:44:10 +02:00
parent c172a5cb8a
commit f047e692c9
9 changed files with 9 additions and 9 deletions

View File

@@ -12,8 +12,8 @@
#include <myke/cpu/timer.h>
#include <myke/drivers/pci/ide.h>
#include <myke/drivers/pci/pci.h>
#include <myke/fs/blockdev.h>
#include <myke/fs/mbr.h>
#include <myke/vfs/blockdev.h>
#include <myke/vfs/part/mbr.h>
#include <myke/libk/libk.h>
#include <myke/mem/malloc.h>
#include <myke/mem/mem.h>

View File

@@ -14,7 +14,7 @@
#include <myke/drivers/pci/ide.h>
#include <myke/drivers/pci/pci.h>
#include <myke/drivers/ports.h>
#include <myke/fs/blockdev.h>
#include <myke/vfs/blockdev.h>
#include <myke/libk/kprint.h>
#include <myke/libk/libk.h>
#include <myke/tasks/locking.h>

View File

@@ -14,7 +14,7 @@
#include <myke/drivers/pci/pci.h>
#include <myke/drivers/serial.h>
#include <myke/drivers/vgascreen.h>
#include <myke/fs/blockdev.h>
#include <myke/vfs/blockdev.h>
#include <myke/libk/kprint.h>
#include <myke/libk/libk.h>
#include <myke/libk/syscall.h>

View File

@@ -7,7 +7,7 @@
#include <stdlib.h>
#include <string.h>
#include <myke/fs/blockdev.h>
#include <myke/vfs/blockdev.h>
#include <myke/libk/libk.h>
#include <myke/tasks/locking.h>
#include <myke/tasks/task.h>

View File

@@ -8,7 +8,7 @@
#include <string.h>
#include <sys/types.h>
#include <myke/fs/blockdev.h>
#include <myke/vfs/blockdev.h>
#define FAT_TYPE_12 1
#define FAT_TYPE_16 2

View File

@@ -7,7 +7,7 @@
#include <string.h>
#include <sys/types.h>
#include <myke/fs/blockdev.h>
#include <myke/vfs/blockdev.h>
typedef struct {
char filename[100];

View File

@@ -9,8 +9,8 @@
#include <sys/types.h>
#include <myke/drivers/pci/ide.h>
#include <myke/fs/blockdev.h>
#include <myke/fs/mbr.h>
#include <myke/vfs/blockdev.h>
#include <myke/vfs/part/mbr.h>
typedef struct {
uint8_t bootable;