diff options
| author | Dave Wilson <[email protected]> | 2015-03-17 19:50:07 -0700 |
|---|---|---|
| committer | Dave Wilson <[email protected]> | 2015-03-17 19:50:07 -0700 |
| commit | 97cf5197cf5b882b2c689d8dc2b555f2edf8f418 (patch) | |
| tree | 46f3701832d70b420eb0fc0eb93261f9da45db3f /gpio/samples/simdevice/simdevice.inx | |
| parent | ef1905bf1e8825bb31120dfb27e0daf3154d859a (diff) | |
Initial publish
Diffstat (limited to 'gpio/samples/simdevice/simdevice.inx')
| -rw-r--r-- | gpio/samples/simdevice/simdevice.inx | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/gpio/samples/simdevice/simdevice.inx b/gpio/samples/simdevice/simdevice.inx new file mode 100644 index 00000000..34e65a68 --- /dev/null +++ b/gpio/samples/simdevice/simdevice.inx @@ -0,0 +1,76 @@ +;/*++ +; +;Copyright (c) Microsoft Corporation. All rights reserved. +; +;Module Name: +; +; SIMGPIO.INF +; +;Abstract: +; INF file for installing Simulated Peripheral Device Driver. +; +;--*/ + +[Version] +Signature="$WINDOWS NT$" +Class=System +ClassGuid={4d36e97d-e325-11ce-bfc1-08002be10318} +Provider=%MSFT% +DriverVer=05/07/2010 +CatalogFile=gpiosamples.cat + +[SourceDisksNames] +3426=windows cd + +[SourceDisksFiles] +Simdevice.sys = 3426 + +;12 == Windows\System32\Drivers +[DestinationDirs] +DefaultDestDir = 12 + +[ControlFlags] +ExcludeFromSelect=* + +;***************************************** +; SimDevice Install Section +;***************************************** + +[Manufacturer] +%MSFT%=Microsoft,NT$ARCH$ + +[Microsoft.NT$ARCH$] +%DeviceDesc%=DriverInstall,ACPI\TEST0003 + +[DriverInstall.NT] +CopyFiles=DriverInstall_Copy + +[DriverInstall.NT.Services] +AddService = simdevice,2,DriverInstall_Service + +[DriverInstall_Copy] +simdevice.sys,,,0x100 + +[DriverInstall_Service] +DisplayName = %SvcDesc% +ServiceType = %SERVICE_KERNEL_DRIVER% +StartType = %SERVICE_DEMAND_START% +ErrorControl = %SERVICE_ERROR_NORMAL% +ServiceBinary = %12%\Simdevice.sys + +[Strings] +;Localizable Strings +MSFT = "Microsoft" +Std = "(Standard system devices) Test device" +SvcDesc = "Test device service" +DeviceDesc = "Test device description" + +;Non-Localizable Strings +SERVICE_KERNEL_DRIVER = 1 +SERVICE_DEMAND_START = 3 +SERVICE_ERROR_NORMAL = 1 + + + + + |
