The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
22 views

Overview of cpu hotplug & panic handling in Linux

Is there anywhere a good reference or description on how the architecture of Linux CPU Hotplug and Panic handling works? Searching the net gives hundreds of cases about issues with those etc., but ...
0
votes
0answers
35 views

how to keep hotplugging without udev

According to my knowledge the main functions of udev are devices nodes creation and hotplugging management. I am planning to get rid of udev. I want to populate /dev manually using mknod to crate ...
1
vote
1answer
206 views

USB mouse hotplugging in DirectFB/QT Embedded

Is there any way to achieve hot-plugging of USB mouse in DirectFB 1.2.9 or Qt Embedded 4.7.3? Currently my application stack is thus.. ----------------- GUI ----------------- Qt Embedded ...
1
vote
0answers
136 views

udev and hotplugging [closed]

It may seem to be a simple question but i couldn't find answer to this: Is there any functionality of udev except for handling hotplugging of devices. Most of the text says that udev also take care ...
1
vote
1answer
139 views

CPU hot plugging and strict 1:1 threading

I wish to add support for CPU hot plugging in my application that has strict affinity rules. Each physical core has exactly one thread pinned to it, but the logic I use for pinning a thread to a CPU ...
0
votes
0answers
79 views

Automating hotplug events for USB in Linux

I am working on mini router project and would like to automate USB Hotplug events when device is plugged in routed. Kernel version used is 2.6.30 and its configured with CONFIG_HOTPLUG. I googled ...
0
votes
0answers
657 views

Is there a reason to use udev when I have mdev?

I'm running an embedded linux system which is based to TI´s Arago base image. This distribution comes with both mdev and udev. It doesn't seem like either of them are configured, so I'm about to ...
1
vote
1answer
121 views

How is a device node created when a piece of hardware is attached to the Computer? [closed]

I want to know how a device node is created when a hardware is connected to the system. Information that I know: When a piece of hardware is connected to the system, the device name is compared ...
1
vote
1answer
2k views

Problem with virsh commands

I have been trying to use virsh attah-disk to attach a qcow2 file as additional storage source. The syntax i am using is (from internet): virsh attach-disk --driver file vm2 disk2.qcow2 hdc If the ...
3
votes
1answer
1k views

Detect external display being connected or removed under Windows 7

Is there some event or notification I can receive or hook each time an external LCD monitor is plugged in or unplugged from a laptop running Windows 7? The laptop detects this and switches my display ...
2
votes
1answer
243 views

What does a linux device need to be seen by Hal?

I'm trying to learn about device drivers on Linux Kernel, for that I've created three modules with: A bus type A device driver A fake device that does nothing now, only is registered Everything ...
6
votes
2answers
580 views

What is the sequence followed by the Linux kernel to configure a device?

As I understood after reading the chapter related to The Linux Device Model in the Linux Device Drivers 3rd Edition, when a new device is configured, the kernel (2.6) follows more or less this ...