PCI IDE driver, new create_volume () syscall, test scripts
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m37s

This commit is contained in:
2026-03-10 18:14:18 +01:00
parent 01c51ac63f
commit 38557bab7d
24 changed files with 726 additions and 39 deletions

View File

@@ -12,6 +12,7 @@
#include <device/partitions.h>
#include <devices.h>
#include <fs/vfs.h>
#include <fs_types.h>
#include <irq/irq.h>
#include <libk/std.h>
#include <limine/limine.h>
@@ -60,13 +61,13 @@ void bootmain (void) {
vfs_init ();
struct device* ramdisk = device_find ("RD");
vfs_create_volume ("RD", VFS_TARFS, ramdisk, false);
vfs_create_volume ("RD", FS_TARFS, ramdisk, false);
struct device* temp = device_find ("TEMP");
device_probe_partitions (temp);
struct device* tempp0 = device_find ("TEMPp0");
vfs_create_volume ("TEMP", VFS_FAT32, tempp0, true);
vfs_create_volume ("TEMP", FS_FAT32, tempp0, true);
proc_pid_alloc_init ();
procgroup_pgid_alloc_init ();