Tagged Questions
4
votes
1answer
393 views
When do hal properties get updated
I'm calling GetProperty on a org.freedesktop.Hal.Device from my handler during a PropertyNotified signal. I'm only calling GetProperty on properties that have been added or changed.
When I call ...
2
votes
2answers
257 views
Find a HAL object based on /dev node path
I'm using python-dbus to interface with HAL, and I need to find a device's UDI based on it's path in the /dev hierarchy.
So given a path such as /dev/sdb, I want to get a value back like ...
2
votes
2answers
220 views
Unit testing for D-Bus and HAL?
How does one test a method that does some interactions with the local D-Bus (accessing a HAL object)?
Results of tests will differ depending on the system that the test is run on, so I don't know ...
1
vote
2answers
74 views
How to mark a device in a way that can be retrived by HAL but does not require mounting or changing the label
I'm trying to find a way to mark a USB flash device in a way that I can programmaticly test for without mounting it or changing the label.
Are there any properties I can modify about a device that ...
0
votes
1answer
82 views
Handling HAL implementation: storage.cdrom.write_speeds
device.get('storage.cdrom.write_speeds')
This returns HAL list of ints, like:
[4284, 2342, 1202, 800]
How should these be handled, to recieve writing speed? Or better, how does one retrieve ...