aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/fs')
-rw-r--r--src/kernel/fs/ata.c8
-rw-r--r--src/kernel/fs/elf.c13
-rw-r--r--src/kernel/fs/ext2.c10
-rw-r--r--src/kernel/fs/ext2.h4
-rw-r--r--src/kernel/fs/fs.c4
-rw-r--r--src/kernel/fs/load.c6
6 files changed, 23 insertions, 22 deletions
diff --git a/src/kernel/fs/ata.c b/src/kernel/fs/ata.c
index c7c7dc1..2e952a1 100644
--- a/src/kernel/fs/ata.c
+++ b/src/kernel/fs/ata.c
@@ -1,9 +1,9 @@
-#include <stdint.h>
-#include <stddef.h>
-#include <stdbool.h>
#include <fs/ata.h>
-#include <system.h>
#include <io/io.h>
+#include <stdbool.h>
+#include <stddef.h>
+#include <stdint.h>
+#include <system.h>
static u16 sel_base_port = 0;
static u8 sel_master_or_slave = 0;
diff --git a/src/kernel/fs/elf.c b/src/kernel/fs/elf.c
index 9a9b105..3d7fcde 100644
--- a/src/kernel/fs/elf.c
+++ b/src/kernel/fs/elf.c
@@ -1,13 +1,14 @@
-#include <stdint.h>
-#include <stddef.h>
-#include <system.h>
#include <fs/elf.h>
+#include <fs/ext2.h>
+#include <gdt/gdt.h>
+#include <lib/lib.h>
#include <lib/stdio.h>
+#include <lib/stdlib.h>
#include <memory/alloc.h>
-#include <lib/lib.h>
#include <memory/paging.h>
-#include <fs/ext2.h>
-#include <gdt/gdt.h>
+#include <stddef.h>
+#include <stdint.h>
+#include <system.h>
#include <tasks/process.h>
int is_elf(struct elf_header *header)
diff --git a/src/kernel/fs/ext2.c b/src/kernel/fs/ext2.c
index 78d1dc4..3193f87 100644
--- a/src/kernel/fs/ext2.c
+++ b/src/kernel/fs/ext2.c
@@ -1,12 +1,12 @@
-#include <stddef.h>
-#include <stdint.h>
-#include <stdbool.h>
#include <fs/ata.h>
#include <fs/ext2.h>
-#include <system.h>
-#include <memory/alloc.h>
#include <lib/lib.h>
#include <lib/stdlib.h>
+#include <memory/alloc.h>
+#include <stdbool.h>
+#include <stddef.h>
+#include <stdint.h>
+#include <system.h>
static struct ext2_superblock superblock;
static struct bgd *bgdt;
diff --git a/src/kernel/fs/ext2.h b/src/kernel/fs/ext2.h
index e5c26fe..797985a 100644
--- a/src/kernel/fs/ext2.h
+++ b/src/kernel/fs/ext2.h
@@ -1,9 +1,9 @@
#ifndef MELVIX_EXT2_H
#define MELVIX_EXT2_H
-#include <stdint.h>
-#include <stddef.h>
#include <stdbool.h>
+#include <stddef.h>
+#include <stdint.h>
#define ROOT_INODE 2
diff --git a/src/kernel/fs/fs.c b/src/kernel/fs/fs.c
index a57a83e..a23b943 100644
--- a/src/kernel/fs/fs.c
+++ b/src/kernel/fs/fs.c
@@ -1,7 +1,7 @@
-#include <stdint.h>
#include <fs/ext2.h>
-#include <system.h>
#include <memory/alloc.h>
+#include <stdint.h>
+#include <system.h>
u32 get_file_size(char *path)
{
diff --git a/src/kernel/fs/load.c b/src/kernel/fs/load.c
index 0170f26..0e93273 100644
--- a/src/kernel/fs/load.c
+++ b/src/kernel/fs/load.c
@@ -1,8 +1,8 @@
+#include <fs/ext2.h>
#include <fs/load.h>
-#include <system.h>
-#include <lib/stdio.h>
#include <lib/lib.h>
-#include <fs/ext2.h>
+#include <lib/stdio.h>
+#include <system.h>
void load_binaries()
{