Creating Components

S

Steve

I am trying to create a component off a .inf file for my DSP (digital
signal processor). I will include the inf but I have created the
component and every time I add it I get this error
Warning 1121: Can not find file resource paths for 'Momentum Data
Systems Hawk89'. Please check the component definition.
Here is the .inf
; Copyright (c) Momentum Data Systems
; Manufacturer: MDS

;------------------------------------------------------------------------------
; OS Common Area
;------------------------------------------------------------------------------

[Version]
Signature=$CHICAGO$
Class=MDSDSP
ClassGuid={65AF58AE-3FA6-4383-AA1E-D05E0A29D11C}
Provider=%MANUFACTURERNAME%
DriverVer=09/08/2000,1.0


[Manufacturer]
%MANUFACTURERNAME%=ModelsSection

[ModelsSection]
%DEVICEDESCRIPTION%=DDInstall,PCI\VEN_10B5&DEV_9050&SUBSYS_00011136
%DEVICEDESCRIPTION%=DDInstall,PCI\VEN_1136&DEV_0001&SUBSYS_00000000

[ControlFlags]
ExcludeFromSelect=PCI\VEN_10B5&DEV_9050&SUBSYS_00011136
ExcludeFromSelect=PCI\VEN_1136&DEV_0001&SUBSYS_00000000

[DriverCopyFiles]
mdsad201.sys,,,2

[SourceDisksNames]
1=%DiskId%,,,

[SourceDisksFiles]
mdsad201.sys=1,,

[DestinationDirs]
DriverCopyFiles_NT=12
DriverCopyFiles_98=11

[ClassInstall32]
Addreg=MDSDSPClassReg

[MDSDSPClassReg]
HKR,,,,%CLASSNAME%

;------------------------------------------------------------------------------
; Windows 2000 Sections
;------------------------------------------------------------------------------

[DDInstall.nt]
CopyFiles=DriverCopyFiles_NT

[DriverCopyFiles_NT]
mdsad201.sys

[DDInstall.nt.Services]
AddService=mdsad201,2,DriverService

[DriverService]
DisplayName=%SERVICENAME%
ServiceType=1
StartType=3
ErrorControl=1
ServiceBinary=%10%\system32\drivers\mdsad201.sys

[DDInstall.nt.hw]
AddReg=DriverAddReg_NT

[DriverAddReg_NT]
; This name appears in: Add/Remove Hardware Wizard
; Device Manager
HKR,,FriendlyName,,"Momentum Data Systems Hawk89"

;------------------------------------------------------------------------------
; Windows 98 Sections
;------------------------------------------------------------------------------

[DDInstall]
DriverVer=09/08/2000,1.0
AddReg=DriverAddReg_98
CopyFiles=DriverCopyFiles_98

[DriverCopyFiles_98]
mdsad201.sys

[DriverAddReg_98]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,mdsad201.sys

;------------------------------------------------------------------------------
; String Definitions
;------------------------------------------------------------------------------

[Strings]
MANUFACTURERNAME="Momentum Data Systems"
CLASSNAME="MDSDSP"
SERVICENAME="mdsad201"
DiskId="MDS Driver Disk"

;This name appears in: Found New Hardware Dialog Box
DEVICEDESCRIPTION="Momentum Data Systems Hawk89"

Can someone help?
I also get this
Warning 1116: Building unreleased component: "Realtek
RTL8139(A/B/C/8130) PCI Fast Ethernet NIC [Version 5.373.0119.2000,
R2]"
Error 1005: File not found: "netrts5.cat"
But I didn't build this it came with XP embedded
 
S

Sean Liming \(eMVP\)

Steve,

Did you create a repository for your component?

Regards,

Sean Liming
XP Embedded Manager
A7 Engineering (www.a7eng.com)
Author: Windows XP Embedded Advanced and Windows NT Embedded Step-by-Step



Steve said:
I am trying to create a component off a .inf file for my DSP (digital
signal processor). I will include the inf but I have created the
component and every time I add it I get this error
Warning 1121: Can not find file resource paths for 'Momentum Data
Systems Hawk89'. Please check the component definition.
Here is the .inf
; Copyright (c) Momentum Data Systems
; Manufacturer: MDS

;---------------------------------------------------------------------------
---
; OS Common Area
;---------------------------------------------------------------------------
---
[Version]
Signature=$CHICAGO$
Class=MDSDSP
ClassGuid={65AF58AE-3FA6-4383-AA1E-D05E0A29D11C}
Provider=%MANUFACTURERNAME%
DriverVer=09/08/2000,1.0


[Manufacturer]
%MANUFACTURERNAME%=ModelsSection

[ModelsSection]
%DEVICEDESCRIPTION%=DDInstall,PCI\VEN_10B5&DEV_9050&SUBSYS_00011136
%DEVICEDESCRIPTION%=DDInstall,PCI\VEN_1136&DEV_0001&SUBSYS_00000000

[ControlFlags]
ExcludeFromSelect=PCI\VEN_10B5&DEV_9050&SUBSYS_00011136
ExcludeFromSelect=PCI\VEN_1136&DEV_0001&SUBSYS_00000000

[DriverCopyFiles]
mdsad201.sys,,,2

[SourceDisksNames]
1=%DiskId%,,,

[SourceDisksFiles]
mdsad201.sys=1,,

[DestinationDirs]
DriverCopyFiles_NT=12
DriverCopyFiles_98=11

[ClassInstall32]
Addreg=MDSDSPClassReg

[MDSDSPClassReg]
HKR,,,,%CLASSNAME%
;---------------------------------------------------------------------------
---
; Windows 2000 Sections
;---------------------------------------------------------------------------
---

[DDInstall.nt]
CopyFiles=DriverCopyFiles_NT

[DriverCopyFiles_NT]
mdsad201.sys

[DDInstall.nt.Services]
AddService=mdsad201,2,DriverService

[DriverService]
DisplayName=%SERVICENAME%
ServiceType=1
StartType=3
ErrorControl=1
ServiceBinary=%10%\system32\drivers\mdsad201.sys

[DDInstall.nt.hw]
AddReg=DriverAddReg_NT

[DriverAddReg_NT]
; This name appears in: Add/Remove Hardware Wizard
; Device Manager
HKR,,FriendlyName,,"Momentum Data Systems Hawk89"

;---------------------------------------------------------------------------
---
; Windows 98 Sections
;---------------------------------------------------------------------------
---
[DDInstall]
DriverVer=09/08/2000,1.0
AddReg=DriverAddReg_98
CopyFiles=DriverCopyFiles_98

[DriverCopyFiles_98]
mdsad201.sys

[DriverAddReg_98]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,mdsad201.sys
;---------------------------------------------------------------------------
---
; String Definitions
;---------------------------------------------------------------------------
---

[Strings]
MANUFACTURERNAME="Momentum Data Systems"
CLASSNAME="MDSDSP"
SERVICENAME="mdsad201"
DiskId="MDS Driver Disk"

;This name appears in: Found New Hardware Dialog Box
DEVICEDESCRIPTION="Momentum Data Systems Hawk89"

Can someone help?
I also get this
Warning 1116: Building unreleased component: "Realtek
RTL8139(A/B/C/8130) PCI Fast Ethernet NIC [Version 5.373.0119.2000,
R2]"
Error 1005: File not found: "netrts5.cat"
But I didn't build this it came with XP embedded
 
S

Steve

I have tried making a repository. I made a new one put every file
that I thought it could possibly need in it, added the repository and
when I loaded the component selected that repository. When I try to
build it says that it can't find the files. Any other ideas would be
greatly appreciated thanks

Sean Liming \(eMVP\) said:
Steve,

Did you create a repository for your component?

Regards,

Sean Liming
XP Embedded Manager
A7 Engineering (www.a7eng.com)
Author: Windows XP Embedded Advanced and Windows NT Embedded Step-by-Step



Steve said:
I am trying to create a component off a .inf file for my DSP (digital
signal processor). I will include the inf but I have created the
component and every time I add it I get this error
Warning 1121: Can not find file resource paths for 'Momentum Data
Systems Hawk89'. Please check the component definition.
Here is the .inf
; Copyright (c) Momentum Data Systems
; Manufacturer: MDS

;---------------------------------------------------------------------------
---
; OS Common Area
;---------------------------------------------------------------------------
---
[Version]
Signature=$CHICAGO$
Class=MDSDSP
ClassGuid={65AF58AE-3FA6-4383-AA1E-D05E0A29D11C}
Provider=%MANUFACTURERNAME%
DriverVer=09/08/2000,1.0


[Manufacturer]
%MANUFACTURERNAME%=ModelsSection

[ModelsSection]
%DEVICEDESCRIPTION%=DDInstall,PCI\VEN_10B5&DEV_9050&SUBSYS_00011136
%DEVICEDESCRIPTION%=DDInstall,PCI\VEN_1136&DEV_0001&SUBSYS_00000000

[ControlFlags]
ExcludeFromSelect=PCI\VEN_10B5&DEV_9050&SUBSYS_00011136
ExcludeFromSelect=PCI\VEN_1136&DEV_0001&SUBSYS_00000000

[DriverCopyFiles]
mdsad201.sys,,,2

[SourceDisksNames]
1=%DiskId%,,,

[SourceDisksFiles]
mdsad201.sys=1,,

[DestinationDirs]
DriverCopyFiles_NT=12
DriverCopyFiles_98=11

[ClassInstall32]
Addreg=MDSDSPClassReg

[MDSDSPClassReg]
HKR,,,,%CLASSNAME%
;---------------------------------------------------------------------------
---
; Windows 2000 Sections
;---------------------------------------------------------------------------
---

[DDInstall.nt]
CopyFiles=DriverCopyFiles_NT

[DriverCopyFiles_NT]
mdsad201.sys

[DDInstall.nt.Services]
AddService=mdsad201,2,DriverService

[DriverService]
DisplayName=%SERVICENAME%
ServiceType=1
StartType=3
ErrorControl=1
ServiceBinary=%10%\system32\drivers\mdsad201.sys

[DDInstall.nt.hw]
AddReg=DriverAddReg_NT

[DriverAddReg_NT]
; This name appears in: Add/Remove Hardware Wizard
; Device Manager
HKR,,FriendlyName,,"Momentum Data Systems Hawk89"

;---------------------------------------------------------------------------
---
; Windows 98 Sections
;---------------------------------------------------------------------------
---
[DDInstall]
DriverVer=09/08/2000,1.0
AddReg=DriverAddReg_98
CopyFiles=DriverCopyFiles_98

[DriverCopyFiles_98]
mdsad201.sys

[DriverAddReg_98]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,mdsad201.sys
;---------------------------------------------------------------------------
---
; String Definitions
;---------------------------------------------------------------------------
---

[Strings]
MANUFACTURERNAME="Momentum Data Systems"
CLASSNAME="MDSDSP"
SERVICENAME="mdsad201"
DiskId="MDS Driver Disk"

;This name appears in: Found New Hardware Dialog Box
DEVICEDESCRIPTION="Momentum Data Systems Hawk89"

Can someone help?
I also get this
Warning 1116: Building unreleased component: "Realtek
RTL8139(A/B/C/8130) PCI Fast Ethernet NIC [Version 5.373.0119.2000,
R2]"
Error 1005: File not found: "netrts5.cat"
But I didn't build this it came with XP embedded
 
S

Sean Liming \(eMVP\)

Steve,

Did you associate the Repository with the Component? In the detail pane for
the component you need to specify the respoistory. This will create the link
between the component and the location of the files. Without the link,
Target Designer will fail to find the files.

Regards,

Sean




Steve said:
I have tried making a repository. I made a new one put every file
that I thought it could possibly need in it, added the repository and
when I loaded the component selected that repository. When I try to
build it says that it can't find the files. Any other ideas would be
greatly appreciated thanks

"Sean Liming \(eMVP\)" <[email protected]_SPAM> wrote in message
Steve,

Did you create a repository for your component?

Regards,

Sean Liming
XP Embedded Manager
A7 Engineering (www.a7eng.com)
Author: Windows XP Embedded Advanced and Windows NT Embedded Step-by-Step



Steve said:
I am trying to create a component off a .inf file for my DSP (digital
signal processor). I will include the inf but I have created the
component and every time I add it I get this error
Warning 1121: Can not find file resource paths for 'Momentum Data
Systems Hawk89'. Please check the component definition.
Here is the .inf
; Copyright (c) Momentum Data Systems
; Manufacturer: MDS
;---------------------------------------------------------------------------
---
; OS Common Area
;---------------------------------------------------------------------------
---
[Version]
Signature=$CHICAGO$
Class=MDSDSP
ClassGuid={65AF58AE-3FA6-4383-AA1E-D05E0A29D11C}
Provider=%MANUFACTURERNAME%
DriverVer=09/08/2000,1.0


[Manufacturer]
%MANUFACTURERNAME%=ModelsSection

[ModelsSection]
%DEVICEDESCRIPTION%=DDInstall,PCI\VEN_10B5&DEV_9050&SUBSYS_00011136
%DEVICEDESCRIPTION%=DDInstall,PCI\VEN_1136&DEV_0001&SUBSYS_00000000

[ControlFlags]
ExcludeFromSelect=PCI\VEN_10B5&DEV_9050&SUBSYS_00011136
ExcludeFromSelect=PCI\VEN_1136&DEV_0001&SUBSYS_00000000

[DriverCopyFiles]
mdsad201.sys,,,2

[SourceDisksNames]
1=%DiskId%,,,

[SourceDisksFiles]
mdsad201.sys=1,,

[DestinationDirs]
DriverCopyFiles_NT=12
DriverCopyFiles_98=11

[ClassInstall32]
Addreg=MDSDSPClassReg

[MDSDSPClassReg]
HKR,,,,%CLASSNAME%
;---------------------------------------------------------------------------
---
; Windows 2000 Sections
;---------------------------------------------------------------------------
---
[DDInstall.nt]
CopyFiles=DriverCopyFiles_NT

[DriverCopyFiles_NT]
mdsad201.sys

[DDInstall.nt.Services]
AddService=mdsad201,2,DriverService

[DriverService]
DisplayName=%SERVICENAME%
ServiceType=1
StartType=3
ErrorControl=1
ServiceBinary=%10%\system32\drivers\mdsad201.sys

[DDInstall.nt.hw]
AddReg=DriverAddReg_NT

[DriverAddReg_NT]
; This name appears in: Add/Remove Hardware Wizard
; Device Manager
HKR,,FriendlyName,,"Momentum Data Systems Hawk89"
;---------------------------------------------------------------------------
---
; Windows 98 Sections
;---------------------------------------------------------------------------
---
[DDInstall]
DriverVer=09/08/2000,1.0
AddReg=DriverAddReg_98
CopyFiles=DriverCopyFiles_98

[DriverCopyFiles_98]
mdsad201.sys

[DriverAddReg_98]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,mdsad201.sys
;---------------------------------------------------------------------------
---
; String Definitions
;---------------------------------------------------------------------------
---
[Strings]
MANUFACTURERNAME="Momentum Data Systems"
CLASSNAME="MDSDSP"
SERVICENAME="mdsad201"
DiskId="MDS Driver Disk"

;This name appears in: Found New Hardware Dialog Box
DEVICEDESCRIPTION="Momentum Data Systems Hawk89"

Can someone help?
I also get this
Warning 1116: Building unreleased component: "Realtek
RTL8139(A/B/C/8130) PCI Fast Ethernet NIC [Version 5.373.0119.2000,
R2]"
Error 1005: File not found: "netrts5.cat"
But I didn't build this it came with XP embedded
 
S

Steve

Sean, how do I associate the repository with the component? By the
way this comes up when I add the component
Warning 1116: Adding unreleased component to configuration: "Momentum
Data Systems Hawk89 [Version 1.0, R4]"
Warning 1121: Can not find file resource paths for 'Momentum Data
Systems Hawk89'. Please check the component definition.
Warning 1121: The estimated configuration size may not be accurate.

Thanks again.
Steve

Sean Liming \(eMVP\) said:
Steve,

Did you associate the Repository with the Component? In the detail pane for
the component you need to specify the respoistory. This will create the link
between the component and the location of the files. Without the link,
Target Designer will fail to find the files.

Regards,

Sean




Steve said:
I have tried making a repository. I made a new one put every file
that I thought it could possibly need in it, added the repository and
when I loaded the component selected that repository. When I try to
build it says that it can't find the files. Any other ideas would be
greatly appreciated thanks

"Sean Liming \(eMVP\)" <[email protected]_SPAM> wrote in message
Steve,

Did you create a repository for your component?

Regards,

Sean Liming
XP Embedded Manager
A7 Engineering (www.a7eng.com)
Author: Windows XP Embedded Advanced and Windows NT Embedded Step-by-Step



I am trying to create a component off a .inf file for my DSP (digital
signal processor). I will include the inf but I have created the
component and every time I add it I get this error
Warning 1121: Can not find file resource paths for 'Momentum Data
Systems Hawk89'. Please check the component definition.
Here is the .inf
; Copyright (c) Momentum Data Systems
; Manufacturer: MDS


;---------------------------------------------------------------------------
---
; OS Common Area

;---------------------------------------------------------------------------
---

[Version]
Signature=$CHICAGO$
Class=MDSDSP
ClassGuid={65AF58AE-3FA6-4383-AA1E-D05E0A29D11C}
Provider=%MANUFACTURERNAME%
DriverVer=09/08/2000,1.0


[Manufacturer]
%MANUFACTURERNAME%=ModelsSection

[ModelsSection]
%DEVICEDESCRIPTION%=DDInstall,PCI\VEN_10B5&DEV_9050&SUBSYS_00011136
%DEVICEDESCRIPTION%=DDInstall,PCI\VEN_1136&DEV_0001&SUBSYS_00000000

[ControlFlags]
ExcludeFromSelect=PCI\VEN_10B5&DEV_9050&SUBSYS_00011136
ExcludeFromSelect=PCI\VEN_1136&DEV_0001&SUBSYS_00000000

[DriverCopyFiles]
mdsad201.sys,,,2

[SourceDisksNames]
1=%DiskId%,,,

[SourceDisksFiles]
mdsad201.sys=1,,

[DestinationDirs]
DriverCopyFiles_NT=12
DriverCopyFiles_98=11

[ClassInstall32]
Addreg=MDSDSPClassReg

[MDSDSPClassReg]
HKR,,,,%CLASSNAME%


;---------------------------------------------------------------------------
---
; Windows 2000 Sections

;---------------------------------------------------------------------------
---

[DDInstall.nt]
CopyFiles=DriverCopyFiles_NT

[DriverCopyFiles_NT]
mdsad201.sys

[DDInstall.nt.Services]
AddService=mdsad201,2,DriverService

[DriverService]
DisplayName=%SERVICENAME%
ServiceType=1
StartType=3
ErrorControl=1
ServiceBinary=%10%\system32\drivers\mdsad201.sys

[DDInstall.nt.hw]
AddReg=DriverAddReg_NT

[DriverAddReg_NT]
; This name appears in: Add/Remove Hardware Wizard
; Device Manager
HKR,,FriendlyName,,"Momentum Data Systems Hawk89"


;---------------------------------------------------------------------------
---
; Windows 98 Sections

;---------------------------------------------------------------------------
---

[DDInstall]
DriverVer=09/08/2000,1.0
AddReg=DriverAddReg_98
CopyFiles=DriverCopyFiles_98

[DriverCopyFiles_98]
mdsad201.sys

[DriverAddReg_98]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,mdsad201.sys


;---------------------------------------------------------------------------
---
; String Definitions

;---------------------------------------------------------------------------
---

[Strings]
MANUFACTURERNAME="Momentum Data Systems"
CLASSNAME="MDSDSP"
SERVICENAME="mdsad201"
DiskId="MDS Driver Disk"

;This name appears in: Found New Hardware Dialog Box
DEVICEDESCRIPTION="Momentum Data Systems Hawk89"

Can someone help?
I also get this
Warning 1116: Building unreleased component: "Realtek
RTL8139(A/B/C/8130) PCI Fast Ethernet NIC [Version 5.373.0119.2000,
R2]"
Error 1005: File not found: "netrts5.cat"
But I didn't build this it came with XP embedded
 
Top