aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--README.md2
-rw-r--r--add_cert.bat2
-rw-r--r--sign.bat2
-rw-r--r--utils/CMakeLists.txt2
-rw-r--r--utils/README.md4
5 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index acac2d7..995b0a2 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ Then navigate to the root directory and call `setenv.bat`:
### Code signing
Driver binaries are signed using the self-signed certificate issued by
-"win7drv" from "Trusted Root Certification Authorities" store.
+"windows7_drivers" 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.
diff --git a/add_cert.bat b/add_cert.bat
index a175206..0b3a01e 100644
--- a/add_cert.bat
+++ b/add_cert.bat
@@ -5,7 +5,7 @@
@setlocal enabledelayedexpansion
@echo off
-set cert_name=win7drv
+set cert_name=windows7_drivers
echo ============================ CERT INFO ============================
echo Certificate name: "%cert_name%"
diff --git a/sign.bat b/sign.bat
index 940d131..0bf7c38 100644
--- a/sign.bat
+++ b/sign.bat
@@ -5,7 +5,7 @@
@setlocal enabledelayedexpansion
@echo off
-set cert_name=win7drv
+set cert_name=windows7_drivers
if [%1] == [] (
echo Usage: %0 SYS_PATH
diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt
index 19004a9..716c661 100644
--- a/utils/CMakeLists.txt
+++ b/utils/CMakeLists.txt
@@ -1,4 +1,4 @@
-project(win7drv_utils)
+project(windows7_drivers_utils)
add_subdirectory(libservice)
add_subdirectory(libnt_path_converter)
diff --git a/utils/README.md b/utils/README.md
index 995fbc3..c69617e 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 win7drv_utils.sln using CMake and build it using
-Visual Studio.
+You can generate the solution windows7_drivers_utils.sln using CMake and build
+it using Visual Studio.
## Licensing