diff options
-rw-r--r-- | README.md | 15 | ||||
-rw-r--r-- | add_cert.bat | 2 | ||||
-rw-r--r-- | sign.bat | 2 | ||||
-rw-r--r-- | utils/CMakeLists.txt | 2 | ||||
-rw-r--r-- | utils/README.md | 4 |
5 files changed, 13 insertions, 12 deletions
@@ -1,6 +1,6 @@ # Windows drivers -This is a collection of drivers for Windows 7, created to amuse and entertain. +This is a collection of basic Windows 7 drivers. ## Development @@ -16,8 +16,9 @@ To set up the development environment, start a new `cmd` session, and run C:\WinDDK\7600.16385.1\bin\setenv.bat C:\WinDDK\7600.16385.1 fre WIN7 no_oacr -Of course, you may want to modify `setenv.bat` parameters. -For example, to compile under x86-64, call `setenv.bat` like this: +Of course, you may want to provide other `setenv.bat` parameters according to +your needs. +For example, to compile for x86-64, call `setenv.bat` like this: C:\WinDDK\7600.16385.1\bin\setenv.bat C:\WinDDK\7600.16385.1 fre x64 WIN7 no_oacr @@ -28,9 +29,9 @@ Then navigate to the root directory and call `setenv.bat`: ### Code signing Driver binaries are signed using the self-signed certificate issued by -"windows_drivers" from "Trusted Root Certification Authorities" store. -You can generate this certificate using `add_cert.bat` (but first make sure -you've set up the development environment). +"win7drv" from "Trusted Root Certification Authorities" store. +You can generate this certificate using `add_cert.bat` (make sure to set up the +development environment first). To verify it's there, you can use the `certmgr.msc` utility. Driver binaries are automatically signed during builds, but you can also sign @@ -103,4 +104,4 @@ Refer to your virtualization software's documentation for more details. This project, including all of the files and their contents, is licensed under the terms of the MIT License. -See [LICENSE.txt](LICENSE.txt) for details. +See LICENSE.txt for details. diff --git a/add_cert.bat b/add_cert.bat index e58bd63..a175206 100644 --- a/add_cert.bat +++ b/add_cert.bat @@ -5,7 +5,7 @@ @setlocal enabledelayedexpansion @echo off -set cert_name=windows_drivers +set cert_name=win7drv echo ============================ CERT INFO ============================ echo Certificate name: "%cert_name%" @@ -5,7 +5,7 @@ @setlocal enabledelayedexpansion @echo off -set cert_name=windows_drivers +set cert_name=win7drv if [%1] == [] ( echo Usage: %0 SYS_PATH diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt index 471d12c..19004a9 100644 --- a/utils/CMakeLists.txt +++ b/utils/CMakeLists.txt @@ -1,4 +1,4 @@ -project(windows_drivers_utils) +project(win7drv_utils) add_subdirectory(libservice) add_subdirectory(libnt_path_converter) diff --git a/utils/README.md b/utils/README.md index 9d6e37a..995fbc3 100644 --- a/utils/README.md +++ b/utils/README.md @@ -15,8 +15,8 @@ Usage examples of some of the drivers in this repository are also included. I've used the compiler shipped with Visual Studio Express 2013 with Update 4 for Windows Desktop. -You can generate the solution windows_drivers_utils.sln using CMake and build -it using Visual Studio. +You can generate the solution win7drv_utils.sln using CMake and build it using +Visual Studio. ## Licensing |