summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-04-26[PATCH] get 'make release' to work properly again.greg@kroah.com
2005-04-26[PATCH] udev: sleep_for_dev() bitsrml@tech9.net
OK, I fixed that bug you hinted at earlier in my previous sleep_for_dev() patch. I am sure you fixed it, but here we go nonetheless, just in case. I actually changed it up a bit. It is probably faster to count down from SECONDS_TO_WAIT_FOR_DEV than count up. I also made the lone 'path' argument const, since it can be. Some other misc. bits, too.
2005-04-26[PATCH] added README info for how to build using klibc.greg@kroah.com
2005-04-26[PATCH] turn off debugging if we are building with klibcgreg@kroah.com
2005-04-26[PATCH] turn off debugging in namedevgreg@kroah.com
2005-04-26[PATCH] added vsyslog support to klibc.greg@kroah.com
2005-04-26[PATCH] add ftruncate to klibc.greg@kroah.com
probably got it wrong too...
2005-04-26[PATCH] klibc specific tweaksgreg@kroah.com
2005-04-26[PATCH] libsysfs does not need mntent.h in it's header file.greg@kroah.com
2005-04-26[PATCH] klibc makefile changes.greg@kroah.com
2005-04-26[PATCH] build tdb and libsysfs from the same makefile as udev.greg@kroah.com
This fixes problem of libsysfs and tdb getting build with different gcc options as the rest of udev.
2005-04-26[PATCH] udev build tweaks to tdb's spinlock codegreg@kroah.com
2005-04-26[PATCH] udev-add build cleanups for other libc versions.greg@kroah.com
2005-04-26[PATCH] tweak tdb to build within udev better.greg@kroah.com
2005-04-26[PATCH] make libsysfs spit debug messages to the same place as the rest of udev.greg@kroah.com
2005-04-26[PATCH] make libsysfs build cleanlygreg@kroah.com
2005-04-26[PATCH] added klibc version 0.82 (cvs tree) to the udev tree.greg@kroah.com
Not hooked up to the build yet.
2005-04-26[PATCH] makefile fix for now.greg@kroah.com
2005-04-26[PATCH] hm, makefile bug with so many files... will fix later...greg@kroah.com
2005-04-26[PATCH] regression tests starting to be added.greg@kroah.com
2005-04-26[PATCH] fix LABEL bug for device files (not class files.)greg@kroah.com
2005-04-26[PATCH] got rid of struct device_attrgreg@kroah.com
namedev.c is still a mess, that's up next after testing...
2005-04-26[PATCH] rename namedev.permissions and namedev.config to udev.permissions ↵greg@kroah.com
and udev.config the namedev name didn't really make much sense anymore...
2005-04-26[PATCH] more warning flags to the build.greg@kroah.com
2005-04-26[PATCH] namedev.c comments + debug patchkay@vrfy.org
and a patch for namdev.c comments + debug o correct 'device device' o correct permission file to config file
2005-04-26[PATCH] fix dbg line in namedev.cgreg@kroah.com
Thanks to Kay Sievers <kay@vrfy.org> for pointing this out.
2005-04-26[PATCH] man page updatekay@vrfy.org
here a new patch for the man page: o namdev.permissions added o corrected a few typos o corrected text for config line format. owner, group mode are only in namedev.permissions (don't know what i was dreaming, while i wrote this :))
2005-04-26[PATCH] udev: another canidate for staticrml@tech9.net
Another one of those "trivial patches so everything must be good" sleep_for_dev() isn't exported or defined in a header, so it can be marked 'static'
2005-04-26[PATCH] more overrides of config info with env variables if in test mode.greg@kroah.com
2005-04-26[PATCH] Fix bug causing udev to sleep forever waiting for dev file to show up.greg@kroah.com
Now we will timeout properly.
2005-04-26[PATCH] change version to 004_bkgreg@kroah.com
2005-04-26[PATCH] make config files, sysfs root, and udev root configurable from ↵greg@kroah.com
config variables This will make running tests a lot simpler.
2005-04-26[PATCH] 004 changelog entrysgreg@kroah.com
2005-04-26[PATCH] 004 releaseudev/v004greg@kroah.com
2005-04-26[PATCH] new version of libsysfs patchdsteklof@us.ibm.com
Here's the patch applying the latest libsysfs. - adds the latest libsysfs code to udev * new code includes dlist implementation, a generic linked list implementation. Needed our own because LGPL * rearranged structures * provided more functions for accessing directory and attributes - gets rid of ->directory->path references in namedev.c - replaces sysfs_get_value_from_attributes with sysfs_get_classdev_attr
2005-04-26[PATCH] man file updatelkml001@vrfy.org
changes: o CALLOUT method included o required keys for every match method listed o keywords changed to uppercase in EXAMPLE
2005-04-26[PATCH] major database cleanupsgreg@kroah.com
Now we standardise on a struct udevice to pass around, and store in the database. This cleaned up the database code a lot.
2005-04-26[PATCH] Changed test.block and test.tty to take ACTION from the command line.greg@kroah.com
2005-04-26[PATCH] don't sleep if 'dev' file is already present on device add.greg@kroah.com
instead sleep for up to 10 seconds waiting for it to show up.
2005-04-26[PATCH] fix comment about how the "dev" file is made up.greg@kroah.com
2005-04-26[PATCH] more database work. Now we only store the info we really need right now.greg@kroah.com
Also delete the record after the device is gone, and fix up a memory leak.
2005-04-26[PATCH] add BUS= bug to TODO list so it will not get forgotten.greg@kroah.com
Thanks to reg@dwf.com for pointing this out to me.
2005-04-26[PATCH] man page updatelkml001@vrfy.org
2005-04-26[PATCH] udev: mode should be mode_trml@tech9.net
Unix file modes should be stored in a mode_t, not a standard type. At the moment it is actually unsigned, in fact, not a signed integer. Attached patch does an s/int mode/mode_t mode/ and cleans up the results.
2005-04-26[PATCH] udev: trivial trivialitiesrml@tech9.net
Yah yah, really trivial stuff... - get_class_device() doesn't need to be exported; it should be static - white space cleanup
2005-04-26[PATCH] udev: cool test scripts againrml@tech9.net
> But the test.block script doesn't catch any partitions on the block > devices :) Never happy! [19:07:52]root@phantasy:~/src/udev/udev# ./test.block [19:13:37]root@phantasy:~/src/udev/udev# ls /udev/hd* ls: /udev/hd*: No such file or directory [19:13:42]root@phantasy:~/src/udev/udev# ./test.block [19:13:53]root@phantasy:~/src/udev/udev# ls /udev/hd* /udev/hda /udev/hda2 /udev/hda4 /udev/hda6 /udev/hdd /udev/hda1 /udev/hda3 /udev/hda5 /udev/hdc test.block now recurses /sys/block, looking for partitions. Should add all drives and all partitions.
2005-04-26[PATCH] udev spec file symlink supportrml@tech9.net
> Hm, I would also like to add the /etc/hotplug.d/default/udev.hotplug > symlink, but rpm doesn't seem to like symlinks in the %files section. > Anyone know how to do this properly? The problem is that the symlink is left dangling to an absolute location in the build root, which won't exist on the installer's system. RPM 4.0 and on catches this. Attached patch fixes it up and makes it work.
2005-04-26[PATCH] spec file changes.greg@kroah.com
2005-04-26[PATCH] udev: cool test scriptsrml@mvista.com
This patch changes test.tty and test.block to add/remove each tty and block device, respectively, on the system. Great way to populate/unpopulate udev rapidly. Its just a simple for loop over the sysfs entries.
2005-04-26[PATCH] test.block changes.greg@kroah.com