aboutsummaryrefslogtreecommitdiff
path: root/kernel
AgeCommit message (Expand)AuthorFilesLines
2026-03-26refactor file and inode architecture againLukas Oesch16-68/+112
2026-03-26fix buildLukas Oesch1-1/+1
2026-03-26use kstd::shared_ptr instead of std::optional for open_file_descriptionsLukas Oesch5-21/+27
2026-03-26implement first draft of a do_mount functionLukas Oesch2-8/+51
2026-03-26prepare test code for a further test functionLukas Oesch1-1/+12
2026-03-26small refactoringLukas Oesch1-4/+3
2026-03-26improve architecture again -> use same architecture for devices and ext2_filesLukas Oesch7-7/+86
2026-03-26first try to simplify the architecture (remove redundant inode_file and open(...Lukas Oesch14-123/+75
2026-03-26remove inode metadataLukas Oesch9-132/+82
2026-03-26prepare files for new inode structureLukas Oesch5-0/+42
2026-03-20kstd/format: use tagged union to reduce template bloatFelix Morgner1-6/+74
2026-03-20kstd/format: implement dynamic width supportFelix Morgner1-1/+1
2026-03-20kstd: rework formatting to be closer to stdFelix Morgner1-49/+88
2026-03-19kernel/memory: fix sized operator deleteFelix Morgner1-2/+2
2026-03-18kstd: introduce strong type for memory amountsFelix Morgner6-32/+42
2026-03-18fix clang-tidy warningsLukas Oesch4-8/+3
2026-03-17Fix include ordermarcel.braun1-1/+1
2026-03-17Clean up project folder structuremarcel.braun38-155/+92
2026-03-17remove commentLukas Oesch1-2/+0
2026-03-17use const & wherever applicableLukas Oesch19-28/+29
2026-03-17write commentsLukas Oesch3-3/+9
2026-03-17use kstd::vector instead of std::array and replace plain-pointers with kstd::...Lukas Oesch28-147/+154
2026-03-17fix lint issuesLukas Oesch5-17/+17
2026-03-17add todoLukas Oesch1-1/+2
2026-03-17remove commentLukas Oesch1-1/+0
2026-03-17add first draft of inode metadataLukas Oesch8-7/+92
2026-03-17implement first inode draft, fix make_device_node, implement first draft of r...Lukas Oesch7-17/+156
2026-03-17improve constnessLukas Oesch6-8/+6
2026-03-17implement first draft of custodyLukas Oesch3-2/+53
2026-03-17implement first draft of make_device_nodeLukas Oesch2-1/+32
2026-03-17small refactoringLukas Oesch1-3/+4
2026-03-17improve constness, expose controllers and devicesLukas Oesch4-5/+24
2026-03-17move m_devices from ram_disk_controller to storage_controller, store point to...Lukas Oesch9-59/+52
2026-03-17every device has a name, generate ram disk device namesLukas Oesch5-8/+38
2026-03-17mount root filesystemLukas Oesch2-1/+35
2026-03-17move test code into separate functionLukas Oesch1-2/+75
2026-03-17Add basic structure for ext2_filesystem, filesystem and mountmarcel.braun7-0/+128
2026-03-17Create basic VFS structuremarcel.braun4-0/+61
2026-03-17Refactor device_filemarcel.braun2-2/+2
2026-03-17Add inode_file and inode structuremarcel.braun5-3/+99
2026-03-17fix buildLukas Oesch1-1/+0
2026-03-17renamingLukas Oesch1-2/+2
2026-03-17remove not needed cpp fileLukas Oesch1-6/+0
2026-03-17use optional instead of pointer, improve error handling (do not just panic, r...Lukas Oesch2-17/+14
2026-03-17add todosLukas Oesch2-0/+7
2026-03-17small refactoringLukas Oesch2-2/+3
2026-03-17implement read and write bytes from deviceLukas Oesch8-2/+209
2026-03-17implement first draft of a file_descriptor_table and open_file_descriptionLukas Oesch9-0/+213
2026-03-17Simplify device lookup in storage controllers by removing redundant major numbermarcel.braun4-6/+5
2026-03-17add commentsLukas Oesch6-1/+187