diff options
author | mfunkey <[email protected]> | 2022-01-20 07:44:46 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-01-20 09:44:46 +0300 |
commit | ba1f66db9ca0073730533bff79c6df80b9321a42 (patch) | |
tree | c8e3ef1487b8ab93458daf742097a3dc52582b05 /kvmd/validators | |
parent | 3ab43edeb962e95402ab0e18c553665ffd6117f0 (diff) |
RNDIS Version 5 for Windows XP, automatic driver load on Windows using ncm (#77)
* rndis version 5 implementation for windows xp
* make windows pick the ncm usb ethernet driver automatically
Diffstat (limited to 'kvmd/validators')
-rw-r--r-- | kvmd/validators/hw.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/validators/hw.py b/kvmd/validators/hw.py index aae7a758..4fcab0af 100644 --- a/kvmd/validators/hw.py +++ b/kvmd/validators/hw.py @@ -55,4 +55,4 @@ def valid_otg_id(arg: Any) -> int: def valid_otg_ethernet(arg: Any) -> str: - return check_string_in_list(arg, "OTG Ethernet driver", ["ecm", "eem", "ncm", "rndis"]) + return check_string_in_list(arg, "OTG Ethernet driver", ["ecm", "eem", "ncm", "rndis", "rndis5"]) |