rename VD to TEMP

This commit is contained in:
2026-03-01 13:46:39 +01:00
parent e61545c4cf
commit 1571469685
2 changed files with 11 additions and 11 deletions

View File

@@ -61,11 +61,11 @@ void bootmain (void) {
struct device* ramdisk = device_find ("RD");
vfs_create_volume ("RD", VFS_TARFS, ramdisk, false);
struct device* vdisk = device_find ("VD");
device_probe_partitions (vdisk);
struct device* temp = device_find ("TEMP");
device_probe_partitions (temp);
struct device* vdp0 = device_find ("VDp0");
vfs_create_volume ("VD", VFS_FAT32, vdp0, true);
struct device* tempp0 = device_find ("TEMPp0");
vfs_create_volume ("TEMP", VFS_FAT32, tempp0, true);
proc_pid_alloc_init ();
procgroup_pgid_alloc_init ();