mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
af70a910fb
- Start work on reimplementing UsbHub driver. - Implement SubmitRequestToRootHub, QueryStatusChangeEndpoint, QueryInterface, GetPortStatusAndChange, SetPortFeature and ClearPortFeature.Handle QueryBusRelations. - Partially implement PNP handling for FDO. When starting the device get all the information about the RootHub the driver will need and enable Power on all ports. - Partially implement PNP handling for PDO, QueryId and QueryDeviceText. - WIP svn path=/branches/usb-bringup/; revision=51569
12 lines
309 B
CMake
12 lines
309 B
CMake
|
|
add_definitions(-DDEBUG_MODE)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/ntoskrnl/include)
|
|
|
|
add_library(usbhub SHARED fdo.c misc.c pdo.c usbhub.c usbhub.rc)
|
|
|
|
target_link_libraries(usbhub ${PSEH_LIB})
|
|
|
|
set_module_type(usbhub kernelmodedriver)
|
|
add_importlibs(usbhub ntoskrnl hal usbd)
|
|
add_cab_target(usbhub 2)
|