Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-04-26 | [PATCH] initial merge of gentoo udev.permissions into udev.rules | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] update Fedora config files | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] update Fedora config files | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] complete removal of explicit udev permissions config file | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] I made some more changes to the manpage of udev including: | tklauser@access.unizh.ch | |
Patch-From: Tobias Klauser <tklauser@access.unizh.ch> - Move the description of the environment variables to a new section called "ENVIRONMENT" (as stated in man(7)) - Pointer to the "official" udev homepage - Fixes for various typos and whitespace damages | |||
2005-04-26 | [PATCH] fix udev_volume_id build error. | greg@kroah.com | |
bah, when will I remember to check the extras _before_ I do a release... | |||
2005-04-26 | [PATCH] 050 releaseudev/v050 | greg@kroah.com | |
2005-04-26 | [PATCH] selinux patch | harald@redhat.com | |
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=142713 /sbin/udevstart segfaults on an ATIIXP chipset which is not supported well by the kernel yet. There, /proc/ide/hda/media can not be read (EIO error) and udevstart seems to give a null-pointer to an SELinux function checking the media-type. | |||
2005-04-26 | [PATCH] update libsysfs to CVS version and fix segfaulting attribute reading | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] klibc supports LOG_PID now, so remove our own implementation | kay.sievers@vrfy.org | |
2005-04-26 | bleah, more merge fixes... | Greg KH | |
2005-04-26 | [PATCH] avoid building klibc test programs and pass SUBDIRS= to klibc clean | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] 049 releaseudev/v049 | greg@kroah.com | |
2005-04-26 | [PATCH] fix 'make clean' error in klibc | greg@kroah.com | |
2005-04-26 | [PATCH] update klibc to 0.194 | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] export DEVNAME regardless of the state of udev_dev_d | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] remove leftover from udevinfo's -d option | azarah@nosferatu.za.org | |
2005-04-26 | [PATCH] add class specific files for class/spi_transport and class/spi_host | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] udevd-test.pl: remove wrong date calculation | kay.sievers@vrfy.org | |
A hour wrap during the test run does not work :) Just remove all the useless date conversions as we are only interested in the seconds it takes to process. [root@pim udevd-test]# ./udevd-test.pl 9 ... device: /class/tty/console, action: remove forking udev time: Sat Dec 11 18:59:57 2004 the delay time is: 3 s device: /class/tty/ptmx, action: remove forking udev time: Sat Dec 11 19:00:07 2004 the delay time is: 4013 s the delay time is: 4013 udevd doesn't act properly. | |||
2005-04-26 | [PATCH] check earlier if we should run as udevstart | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] remove double initialization | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] include missing header to udevtest.c | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] add -V option to udev to print the version number | kay.sievers@vrfy.org | |
On Sat, 2004-12-11 at 18:44 +0200, Martin Schlemmer [c] wrote: > > Any suggestions to determining the version of the installed udev? > This is now during startup, to see if we can make use of using > udevsend as hotplug agent. If the system was up, udevinfo could > be used, but that is in /usr/bin that might be on a seperate /usr. > I know we might move udevinfo to /bin, but that might be an issue > for some, and adding a -V switch to /sbin/udev might be a better > choice. | |||
2005-04-26 | [PATCH] prevent udev node creatinon for "class" registration | kay.sievers@vrfy.org | |
I've found a /dev/video4linux node and just realized, that libsysfs searches all subdirs for an attribute name. So it found /class/video4linux/video0/dev for the videodev class creation event /class/video4linux and created a node. Just ignore the SUBSYSTEM="class" events now. | |||
2005-04-26 | [PATCH] udevd: serialization of the event sequence of a chain of devices | kay.sievers@vrfy.org | |
Currently udevd delays only events for the same DEVPATH. Example of an "add" event sequence: /block/sda /block/sda/sda1 With this change, we make sure, that the udev process handling /block/sda has finished its work (waited for all attributes, created the node) before we fork the udev event for /block/sda/sda1. This way the event for sda1 can be sure, that the node for the main device is already created (may be useful for disk labels). It will not affect any parallel device handling, only the sequence of the devices directory chain is serialized. The 10.000 disks plugged in will still run as parallel events. :) The main motivation to do this is the program execution of the dev.d/ and hotplug.d/ directory. If we don't wait for the parent event to exit, we can't be sure that the executed scripts are run in the right order. On Thu, Dec 09, 2004 at 09:18:28AM +0100, Kay Sievers wrote: > On Wed, 2004-12-08 at 19:07 -0800, David Brownell wrote: > > Could that argument apply to the underlying hardware, too? > We now make sure that the sequence of events for a device > is serialized for every device chain and the class/block > devices which have a "device" link to a physical device are > handled after the physical device is fully populated and > notified to userspace. It will only work this way on kernels > later than 2.6.10-rc1 cause it depends on the PHYSDEVPATH > value in the hotplug environment. | |||
2005-04-26 | [PATCH] add a class/fc_host file to the list of what to wait for | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] udev_volume_id: links sysfs.a instead of all objects | kay.sievers@vrfy.org | |
cuts down the size from: dynamically linked: 48.030 -> 45.187 statically linked: 149.177 -> 142.362 | |||
2005-04-26 | [PATCH] 048 releaseudev/v048 | greg@kroah.com | |
2005-04-26 | [PATCH] fix udev_volume_id so it will now build properly. | greg@kroah.com | |
2005-04-26 | [PATCH] fix scsi_id build errors due to changes in the main udev makefile | greg@kroah.com | |
also fixed up the QUIET issue when it was disabled for the extras programs | |||
2005-04-26 | [PATCH] 047 releaseudev/v047 | greg@kroah.com | |
2005-04-26 | [PATCH] add more debian rules files. | greg@kroah.com | |
2005-04-26 | [PATCH] move distro specific config files into their own directories | greg@kroah.com | |
2005-04-26 | more merge fixups | Greg KH | |
2005-04-26 | [PATCH] update debian rules files. | greg@kroah.com | |
2005-04-26 | [PATCH] added asterix rules to the gentoo file. | greg@kroah.com | |
2005-04-26 | [PATCH] fix gentoo scsi cdrom rule | greg@kroah.com | |
http://bugs.gentoo.org/show_bug.cgi?id=73208 | |||
2005-04-26 | [PATCH] Fix the multithreaded build again... | greg@kroah.com | |
2005-04-26 | [PATCH] use udevstart for udev.init.* files. | greg@kroah.com | |
Thanks to Kay for pointing it out. | |||
2005-04-26 | [PATCH] delete a bunch of files no longer needed. | greg@kroah.com | |
Thanks to Kay for pointing it out. | |||
2005-04-26 | [PATCH] Various typos and other litte errors in udev.8.in | klauser@access.unizh.ch | |
Thanks-To: Tobias Klauser <tklauser@access.unizh.ch> While crawling through the udev manpage I noticed some typos and other grammatical errors. English is not my native language, so I'm not sure if I fixed everything right. I would be glad if any English-speaking person could check this patch before applying. | |||
2005-04-26 | [PATCH] update Fedora dev.d/ example and remove unused conf.d/ directory | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] don't install distribution specific init script on "make install" | kay.sievers@vrfy.org | |
Leave that part up to the one who itegrates udev into a system as there is much more to care of than to call a init stript for a dynamic dev. | |||
2005-04-26 | [PATCH] restore OWNER/GROUP assignment in rule coming from RESULT | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] make gcov compile scripts working with recent gcc | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] fix udev-test/udev-test.pl to work with again | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] add net/atml and class/ppdev to the wait_for_sysfs exception list | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] add net/nlv* devices to the exception list | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] add "pcmcia" and "fc_transport" to the wait_for_sysfs lists | kay.sievers@vrfy.org | |
2005-04-26 | [PATCH] remove unused timestamp field | kay.sievers@vrfy.org | |