summaryrefslogtreecommitdiff
path: root/sysutils/hal/files
AgeCommit message (Collapse)AuthorFilesLines
2011-02-17somebody renamed hw.acpi.supported_states to hw.acpi.sleep.states, sojmcneill1-1/+2
try the 2nd if the 1st fails
2011-01-08Fixes scriptdir for NetBSD.obache1-3/+3
Bump PKGREVISION.
2010-12-26Update to 0.5.14.markd3-4/+9
Many bugfixes and support for new features.
2010-12-16dont divide by 3600, beacuse gnome power applet doesnt expect it like thisahoka1-3/+3
ok by jared
2009-10-15treat driver == "ld" as a mass storage device, like "wd" and "sd"jmcneill1-2/+3
2009-03-01Plug a memory leak in envsys_timeout; the caller of prop_dictionary_all_keysjmcneill1-1/+2
is responsible for freeing allocated memory. Bump PKGREVISION.
2009-01-18Optical media handling needs block.storage_device too; add this tojmcneill1-0/+2
improve KDE4 compatibility. Bump PKGREVISION.
2008-12-26Since people are bumping pkgrevison on this anyway..jmcneill2-7/+77
hald-netbsd: use scsi identify to fill in storage.vendor/storage.model where available so hal-info fdi matching rules will apply hald-netbsd: if libvolume_id thinks that a partition is vfat, believe it over the disklabel (stops USB devices lacking partition tables such as an iPod from incorrectly being treated as ffs).
2008-12-20Enhance NetBSD hal support to at least be able to write files to opticalreinoud2-5/+260
media. No support for mounting yet.
2008-12-11Fix typoreinoud3-1/+443
2008-12-11Add rudementary cdrom HAL info. Probing and volume management needs to bereinoud4-7/+14
implemented still.
2008-12-04hald-netbsd: clear charge rate when charge state is normal, reportjmcneill1-1/+9
measurement type when envstat provides Ah readings. Bump PKGREVISION.
2008-12-01hald-netbsd: add basic support for automounting non-optical media. Stilljmcneill7-19/+581
some bugs to work out, but it's a start. Bump PKGREVISION.
2008-11-27hald-netbsd: add v4l2 support, bump PKGREVISIONjmcneill4-1/+164
2008-11-27According to spec oss.type should be 'pcm', not 'dsp'. Fill injmcneill1-4/+9
oss.device_id while we're here.
2008-11-27hald-netbsd: add audio support, bump PKGREVISIONjmcneill5-3/+277
2008-11-27hald-netbsd: mark the system type as 'laptop' if acpibat0 is found, andjmcneill4-14/+67
don't continually send notifications while charging and discharging. Bump PKGREVISION.
2008-11-27hald-netbsd: clear is_charging/is_discharging before walking through thejmcneill1-19/+13
sensor properties, and make sure we don't read an invalid sensor in the process. Bump PKGREVISION.
2008-11-27Add reboot, shutdown, suspend support. Bump PKGREVISION.jmcneill5-14/+130
2008-11-27Add basic battery and ac_adapter support using envsys on NetBSD.jmcneill5-1/+291
Bump PKGREVISION.
2008-11-25Initial import of NetBSD HAL backend. It doesn't do much useful yet, butjmcneill29-0/+6483
keeping things here makes development easier. Bump PKGREVISION.
2008-11-22VARBASE/run/hal -> VARBASE/run/haldjmcneill1-2/+2
2008-11-22Import hal version 0.5.11. Uses the 'dummy' backend on NetBSD for now,jmcneill1-0/+27
more to come soon. What is the point of HAL? To merge information from various sources such that desktop applications can locate and use hardware devices. The point is that the exact set of information to merge varies by device and bus type. In order to do this, we need to define a format for the information, hence the HAL specification. We may read some stuff from the hardware itself, then add some info provided by the kernel, then add some metadata from some systemwide files, then add some data that has been obtained by the desktop and stored per-user, then look at some blacklist, and finally we have a complete picture of everything known about that particular device. An extra value is that we can do this in an operating system independent way. Stuff like this is important to the major desktop environments.