aboutsummaryrefslogtreecommitdiff
path: root/kernel/devices/include
AgeCommit message (Collapse)AuthorFilesLines
2026-03-17Clean up project folder structuremarcel.braun6-393/+0
2026-03-17use const & wherever applicableLukas Oesch1-1/+1
2026-03-17write commentsLukas Oesch2-2/+8
2026-03-17use kstd::vector instead of std::array and replace plain-pointers with ↵Lukas Oesch3-14/+14
kstd::shared_ptr
2026-03-17fix lint issuesLukas Oesch5-17/+17
2026-03-17improve constness, expose controllers and devicesLukas Oesch2-3/+10
2026-03-17move m_devices from ram_disk_controller to storage_controller, store point ↵Lukas Oesch3-28/+10
to devices
2026-03-17every device has a name, generate ram disk device namesLukas Oesch2-3/+13
2026-03-17implement read and write bytes from deviceLukas Oesch2-0/+31
2026-03-17Simplify device lookup in storage controllers by removing redundant major numbermarcel.braun2-2/+2
2026-03-17add commentsLukas Oesch6-1/+187
2026-03-17rename temp_device back to deviceLukas Oesch2-1/+1
2026-03-17rename files to snake_case (temp_device part1 -> renamed to device later, ↵Lukas Oesch6-8/+8
due to capital-/lower-letter problem)
2026-03-17refactoring read and write block calculationsLukas Oesch2-3/+16
2026-03-17implement determine_boot_deviceLukas Oesch1-0/+2
2026-03-17implement write_block in RAMDiskDeviceLukas Oesch2-0/+2
2026-03-17fix build, refactoringLukas Oesch1-1/+0
2026-03-17fix build add test code to read a block from deviceLukas Oesch1-2/+0
2026-03-17implement major and minor analog to the linux kernelLukas Oesch4-4/+14
2026-03-17implement function to get a device by major and minor numberLukas Oesch5-6/+20
2026-03-17remove not needed m_data_size memberLukas Oesch1-1/+0
2026-03-17refactoring, remove test codeLukas Oesch1-3/+3
2026-03-17implement first draft of RAMDiskDeviceLukas Oesch2-1/+22
2026-03-17small refactoring, add some todosLukas Oesch3-6/+10
2026-03-17Implement RAMDiskController and instantiate it in StorageManagementmarcel.braun2-1/+25
2026-03-17Implement basic structure of storage managementmarcel.braun1-3/+17
2026-03-17setup basic devices and RAMDisk structureLukas Oesch6-0/+71