Project Home
Project Home
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - devnp-i82544.so from trunk problem: (5 Items)
   
devnp-i82544.so from trunk problem  
I download core_networking repository and build x86/devnp-i82544.so from trunk repository.

svn-revision of i82544 folder is 1135.
The size of this build devnp-i82544.so is 62731.

When I try to mount "new" driver:
#io-pkt-v4-hc -v -di82544 verbose

I get:

Unable to init devnp-i82544.so No such device



If I try to use the an "old" devnp-i82544.so ( size 58454 ) from CD installation

/usr/qnx641/target/qnx6/x86/lib/dll/devnp-i82544.so ( size 58454 )  - it work nice.


Whot is the reason of problem?


Re: devnp-i82544.so from trunk problem  
On my investigation the problem is in i82544/init.c source:

There is no 

pci_attach(0); 

call before cickle of pci_find_device() function.


The same problem possible in speedo/detect.c source.
RE: devnp-i82544.so from trunk problem  
The pci_attach() is performed by io-pkt, so that it why you have to
perform a complete build.


-----Original Message-----
From: Leonid Khait [mailto:community-noreply@qnx.com] 
Sent: Monday, October 12, 2009 3:22 AM
To: drivers-networking
Subject: Re: devnp-i82544.so from trunk problem

On my investigation the problem is in i82544/init.c source:

There is no 

pci_attach(0); 

call before cickle of pci_find_device() function.


The same problem possible in speedo/detect.c source.




_______________________________________________

Networking Drivers
http://community.qnx.com/sf/go/post39727
RE: devnp-i82544.so from trunk problem  
You have to build from the trunk directory so that you build all the
relevant libraries as well. You cannot just build the driver alone. From
the trunk directory perform a "make hinstall" followed by a "make".


-----Original Message-----
From: Leonid Khait [mailto:community-noreply@qnx.com] 
Sent: Sunday, October 11, 2009 6:12 AM
To: drivers-networking
Subject: devnp-i82544.so from trunk problem

I download core_networking repository and build x86/devnp-i82544.so from
trunk repository.

svn-revision of i82544 folder is 1135.
The size of this build devnp-i82544.so is 62731.

When I try to mount "new" driver:
#io-pkt-v4-hc -v -di82544 verbose

I get:

Unable to init devnp-i82544.so No such device



If I try to use the an "old" devnp-i82544.so ( size 58454 ) from CD
installation

/usr/qnx641/target/qnx6/x86/lib/dll/devnp-i82544.so ( size 58454 )  - it
work nice.


Whot is the reason of problem?






_______________________________________________

Networking Drivers
http://community.qnx.com/sf/go/post39715
Re: RE: devnp-i82544.so from trunk problem  
You are right!

After few hours of compiling process by

#make

I get en errors, which stop "make" process.

Then a long time

#make install

work was continued.

Finaly I build speedo driver manually with succsess and without any changes. And this new version resolve mac=XXXXXX 
problems.

Fortunally libdrvS.a library was builded ok.

Thank you for Help.