-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathREADME
71 lines (47 loc) · 2.5 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---------------------------------------------------
_ _ _
| | (_) |
__ _____ ________ ___ _ ___| |__ __ _ _| |_
\ \/ / __|______\ \ / / | | / __| '_ \ / _` | | __|
> < (__ \ V /| |_| \__ \ |_) | (_| | | |_
/_/\_\___| \_/ \__,_|___/_.__(_)__, |_|\__|
__/ |
|___/
---------------------------------------------------
Overview:
A repository to contain the OpenXT Para-virtual USB Windows front end driver.
This driver along with the Linux front and back end drivers are currently
only in the OpenXT project. Ideally they would supplant the existing version
that lives in the 2.6.x kernels (and is not yet in the 3.x/4.x lines).
Getting:
There are various git tools for Windows. One good choice is Cygwin for a nice
Unixy environment. A simple choice is GIT-SCM:
http://git-scm.com/download/win
Regardless of the tool used, to be able to build the project, two repositories
need to be cloned. First clone:
git://github.com/OpenXT/xc-windows.git
The xc-vusb project depends on header files and libraries in this repo. Then
clone the xc-vusb repo inside the xc-windows.git repo:
git://github.com/OpenXT/xc-vusb.git
Building:
First the xc-windows.git code must be built. This requires installing the
Windows 7 WDK. Once installed use one of the "Longhorn/Vista" build
environments - this opens a command prompt. Choose x86 or x64 (or both)
depending on what sort of xc-vusb driver is to be built. Within
xc-windows.git, run something like:
build -cbgz
Microsoft Visual Studio 2012 (or later) and the Windows 8 (or later) WDK are
required to build the xc-vusb driver. The main project file lives here:
Drivers/xenvusb/xenvusb.sln
There are a number of different build targets to choose from. The binaries end
up here:
Drivers/xenvusb/Win7Release or Win7Debug for 32b
Drivers/xenvusb/x64/Win7Release or Win7Debug for 64b
Manual driver signing can be done using the xc-windows/do_sign.ps1 script but
it is probably easier and saner to follow the build instructions here to get
a proper signed build of the driver:
https://github.com/OpenXT/openxt/wiki/Windows-Build-Machine
https://github.com/OpenXT/openxt/wiki/Windows-Build-Process
Debugging:
There are up to date Windows HVM debugging instruction here:
http://github.com/OpenXT/openxt/wiki/Windows-HVM-Debugging