|
I have a driver which compiles and loads into the linux kernel just fine. In this driver are some functions which I would like to access from the kernel file 'fs/readdir.c'. Additionally, how can I test if a driver is loaded?
I need something like the...
Started by cheesysam on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In the driver modify readdir to look for the driver to load, then use find_symbol (as mentioned by @chrisharris somewhere in readdir....
Or just NULL s to tell the rest of the kernel that your driver is not loaded yet.
|
|
Is there a way to show currently loaded drivers in Vista 64 bit without having to reboot and do a logged boot?
Started by Kev on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Here is an article form the How-To geek that shows how to view currently installed drivers:
http://www.howtogeek.com/howto/windows-vista/view-the-list-of-installed-drivers-the-easy-way/
The article talks about using a utility called DriverView....
|
|
My thinkpad has AMD HD 6480G(from the APU A4-3300M) and HD 6470M dual graphics. I'm using Squeeze and I don't use the proprietary fglrx.
From Xorg.0.log, it seems that fbdev is being used instead of radeon:
Code: Select all [ 32.913] (==) Matched ati ...
Started by Jesse2004 on
, 12 posts
by 4 people.
Answer Snippets (Read the full thread at debian):
Alternatively you can give....
Xorg Device setup for Radeon rs480 Display Driver
Section "Device"
### Available Driver options "Card0"
Driver "radeon"
VendorName "ATI Technologies Inc"
BoardName "RS480 [Radeon Xpress 200G Series.
|
Ask your Facebook Friends
|
Configured Heidi driver cannot be loaded
Why do I get this message every morning? "the configured Heidi driver cannot be loaded. Switching to default software driver." This happens every morning. My computer and autocad stays on overnight. What is happening...
Started by MikeP on
, 10 posts
by 4 people.
Answer Snippets (Read the full thread at cadtutor):
There are two Heidi display.
VR512 HO My guess is it has something to do with the display driver.
|
|
I'm developing a Linux driver loadable module and I have to use another device in my driver.(kind of driver stacked on another driver)
How do I call/use another driver in my driver? I think they are both in the kernel so there might be a way that can ...
Started by teerapap on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Details though; I think that modprobe will ensure the other module is loaded, but I'm not sure.
|
|
I have a QT application that requires the MySql driver. I have both a .pro file to compile the app with QtCreator and a .vcproj for Visual C++ 2008 Express. The code is identical and it compiles without a hitch, but the executable created by Visual C+...
Started by Tomis on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
And the Qt driver (the 4.3 version find the driver, using the same code and binaries), so you are much better off using a dedicated.
Built binaries for Visual C++ than trying to build it yourself .
|
|
I'm working on a script that needs to set up a Xerox Phaser printer using the postscript driver. The computers currently have the PCL driver on them (though the printers aren't set up on them yet.) I want to install the PS driver using the specified INF...
Started by Jordan Milne on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
See here fore.
As this will allow you to add the printer if the drivers are already loaded on a system.
|
|
On Sat, 28 Mar 2009 06:42:01 -0700, luigi <luigi@discussions.microsoft.com
my pc takes more time to open the session
here is the result of ntblog.txt
Service Pack 3 3 27 2009 20:02:10.125
Loaded driver \WINDOWS\system32\ntkrnlpa.exe
Loaded driver...
Started by luigi on
, 14 posts
by 3 people.
Answer Snippets (Read the full thread at omgili):
Did not load driver \SystemRoot\System32\DRIVERS\parport.sys
This is showing up in the Event Viewer
Logical Disk Manager
Net Driver HPZ12
Network Connections
Network Location Awareness (NLA)
NOD32 Kernel Service....
|
|
I have compiled PHP 5.3 and everything seems to be working correctly except when running PHP from the command line.
When I run:
# php --ini
it produces this output:
Configuration File (php.ini) Path: /etc/php5/apache2 Loaded Configuration File: /etc/php...
Started by Steve Todd on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
But you can use php -c /etc/php5/apache2.
You load is the good one ? I mean the one you rebuild).
|
|
Is it possible to unload a driver which was loaded at boot time. If yes, how can this be done?
Started by mcnamara on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
I tried net stop but I....
System is windows xp.
Is a kernel mode driver which is loaded by a service so I cannot uninstall it from device manager
> net stop [drivername]
on the commandline (or Start > Run) to unload a driver.
|