4ffed8096d
This makes them harder to accidentally run them from the shell, which would not work. In the future this may also allow embedding the driver config in the driver executable itself without having to look at all non-driver executables too.
18 lines
404 B
TOML
18 lines
404 B
TOML
[[drivers]]
|
|
name = "SCSI over USB"
|
|
class = 8 # Mass Storage class
|
|
subclass = 6 # SCSI transparent command set
|
|
command = ["usbscsid", "$SCHEME", "$PORT", "$IF_PROTO"]
|
|
|
|
[[drivers]]
|
|
name = "USB HUB"
|
|
class = 9 # HUB class
|
|
subclass = -1
|
|
command = ["usbhubd", "$SCHEME", "$PORT", "$IF_NUM"]
|
|
|
|
[[drivers]]
|
|
name = "USB HID"
|
|
class = 3 # HID class
|
|
subclass = -1
|
|
command = ["usbhidd", "$SCHEME", "$PORT", "$IF_NUM"]
|