diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-04-27 22:47:44 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-04-27 22:47:44 +0300 |
commit | 0138fb3c6bf30b34215ba79875a720c39e046c4b (patch) | |
tree | 01beec924105adaf8e3ed9d095d94ccc3d8744a2 | |
parent | um: reorganize projects (diff) | |
download | windows7-drivers-0138fb3c6bf30b34215ba79875a720c39e046c4b.tar.gz windows7-drivers-0138fb3c6bf30b34215ba79875a720c39e046c4b.zip |
README updates
-rw-r--r-- | km/build/wdk7.1/README.md | 18 | ||||
-rw-r--r-- | km/build/wdk8.1update/README.md | 6 | ||||
-rw-r--r-- | um/README.md | 4 | ||||
-rw-r--r-- | um/service/README.md | 4 | ||||
-rw-r--r-- | um/wrappers/simple/README.md | 4 | ||||
-rw-r--r-- | um/wrappers/special/nt_path_converter/README.md | 4 |
6 files changed, 20 insertions, 20 deletions
diff --git a/km/build/wdk7.1/README.md b/km/build/wdk7.1/README.md index 80ae6ee..f6c0309 100644 --- a/km/build/wdk7.1/README.md +++ b/km/build/wdk7.1/README.md @@ -1,5 +1,5 @@ -Building drivers -================ +WDK 7.1.0 +========= The drivers can be built using [Windows Driver Kit 7.1.0]. @@ -8,7 +8,7 @@ The drivers can be built using [Windows Driver Kit 7.1.0]. Prerequisites ------------- -Install the "Build Environments" distributed with the kit, fire up `cmd`, and +Install the "Build Environments" distributed with the kit, fire up `cmd` and execute (to target Windows 7/x86): C:\WinDDK\7600.16385.1\bin\setenv.bat C:\WinDDK\7600.16385.1 fre WIN7 no_oacr @@ -17,10 +17,10 @@ or (to target Windows 7/x86-64): C:\WinDDK\7600.16385.1\bin\setenv.bat C:\WinDDK\7600.16385.1 fre x64 WIN7 no_oacr -Manually --------- +DIY +--- -Navigate to "km/src/" and execute: +From the project's root directory, navigate to "km/src/" and execute: build.exe /cegwZ @@ -28,8 +28,8 @@ This should build every driver, generating the .sys files somewhere in the obj*something* directories in the respective drivers' directories. They are not signed though. -Automatically -------------- +Automation +---------- I developed a bunch of batch scripts to automatically build, sign and copy the .sys files to a predefined directory. @@ -52,7 +52,7 @@ sign manually by passing the path to a .sys file to `sign.bat`: sign.bat C:\workspace\personal\windows7-drivers\km\build\wdk7.1\bin\x64\Release\simple.sys -### Building the drivers +### Building To build every driver, execute `build_drivers.bat`: diff --git a/km/build/wdk8.1update/README.md b/km/build/wdk8.1update/README.md index 4938dad..ebcb7c3 100644 --- a/km/build/wdk8.1update/README.md +++ b/km/build/wdk8.1update/README.md @@ -1,7 +1,7 @@ -Building drivers -================ +WDK 8.1 Update +============== -The drivers can be built using WDK 8.1. +The drivers can be built using WDK 8.1 Update. You can find the Visual Studio 2013 solution & project files required to build the drivers in this directory. diff --git a/um/README.md b/um/README.md index e926e9a..4a30be2 100644 --- a/um/README.md +++ b/um/README.md @@ -13,8 +13,8 @@ A couple of usage examples are included along with the drivers. [libnt_path_converter]: wrappers/special/nt_path_converter/README.md [nt_path_converter]: ../km/src/special/nt_path_converter -Building the utilities ----------------------- +Building +-------- Create the build files using CMake and build using Visual Studio. diff --git a/um/service/README.md b/um/service/README.md index f9fb601..d3bd6bd 100644 --- a/um/service/README.md +++ b/um/service/README.md @@ -46,8 +46,8 @@ The same as See also -------- -* [Building the utilities] +* [Building] * [License] -[Building the utilities]: ../README.md#building-the-utilities +[Building]: ../README.md#building [License]: ../../README.md#license diff --git a/um/wrappers/simple/README.md b/um/wrappers/simple/README.md index 51a46cb..fa92fff 100644 --- a/um/wrappers/simple/README.md +++ b/um/wrappers/simple/README.md @@ -36,8 +36,8 @@ For example: See also -------- -* [Building the utilities] +* [Building] * [License] -[Building the utilities]: ../../README.md#building-the-utilities +[Building]: ../../README.md#building [License]: ../../../README.md#license diff --git a/um/wrappers/special/nt_path_converter/README.md b/um/wrappers/special/nt_path_converter/README.md index 71b4948..b295a80 100644 --- a/um/wrappers/special/nt_path_converter/README.md +++ b/um/wrappers/special/nt_path_converter/README.md @@ -24,8 +24,8 @@ For example: See also -------- -* [Building the utilities] +* [Building] * [License] -[Building the utilities]: ../../../README.md#building-the-utilities +[Building]: ../../../README.md#building [License]: ../../../../README.md#license |