1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:37:46 +00:00

Kernel/USB: Add a crude USB MassStorage driver :^)

This commit is contained in:
Hendiadyoin1 2023-09-15 21:15:30 +02:00 committed by Andrew Kaster
parent c230a0d96f
commit 29292bbdbf
8 changed files with 615 additions and 0 deletions

View file

@ -31,6 +31,7 @@ set(KERNEL_SOURCES
Bus/PCI/DeviceIdentifier.cpp
Bus/USB/UHCI/UHCIController.cpp
Bus/USB/UHCI/UHCIRootHub.cpp
Bus/USB/Drivers/MassStorage/MassStorageDriver.cpp
Bus/USB/USBConfiguration.cpp
Bus/USB/USBController.cpp
Bus/USB/USBDevice.cpp
@ -120,6 +121,7 @@ set(KERNEL_SOURCES
Devices/Storage/SD/PCISDHostController.cpp
Devices/Storage/SD/SDHostController.cpp
Devices/Storage/SD/SDMemoryCard.cpp
Devices/Storage/USB/BulkSCSIInterface.cpp
Devices/Storage/DiskPartition.cpp
Devices/Storage/StorageController.cpp
Devices/Storage/StorageDevice.cpp