Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-04-26 | [PATCH] update changelog for 003 releaseudev/v003 | greg@kroah.com | |
2005-04-26 | [PATCH] update the spec file for the new version and install process. | greg@kroah.com | |
Spec file still does not install all of the proper files. | |||
2005-04-26 | [PATCH] fix makefile release rule to not drop tdb.h file. | greg@kroah.com | |
2005-04-26 | [PATCH] Add FAQ for udev | greg@kroah.com | |
2005-04-26 | [PATCH] removed AUTHORS and INSTALL files as they were pretty pointless. | greg@kroah.com | |
2005-04-26 | [PATCH] copyright updates. | greg@kroah.com | |
2005-04-26 | [PATCH] Add AUTHORS and INSTALL files. | greg@kroah.com | |
2005-04-26 | [PATCH] TODO updates | greg@kroah.com | |
2005-04-26 | [PATCH] Updatd the README | greg@kroah.com | |
2005-04-26 | [PATCH] updated the TODO list. | greg@kroah.com | |
2005-04-26 | [PATCH] add udev man page (basically just a place holder for now.) | greg@kroah.com | |
2005-04-26 | [PATCH] added uninstall support | greg@kroah.com | |
2005-04-26 | [PATCH] added install target for makefile so people don't have to do it by ↵ | greg@kroah.com | |
hand anymore. | |||
2005-04-26 | [PATCH] add version to debug log on startup. | greg@kroah.com | |
2005-04-26 | [PATCH] tell the user what mknod() we are trying to do. | greg@kroah.com | |
2005-04-26 | [PATCH] add dbg_parse() to cut down on parse file debugging statements | greg@kroah.com | |
Can be turned on by hand in the namedev.c file. | |||
2005-04-26 | [PATCH] put config files and database in /etc/udev by default | greg@kroah.com | |
Can be overridden on the makefile line. | |||
2005-04-26 | [PATCH] add callout config type to udev | patmans@us.ibm.com | |
This patch adds a callout config type to udev, so external programs can be called to get serial numbers or id's that are not available as a sysfs attribute. | |||
2005-04-26 | [PATCH] udevdb patch | dsteklof@us.ibm.com | |
This patch: 1) removes the three database files for just one udevdb.tdb file. 2) adds udevdb_init() and udevdb_exit() functions 3) initializes database now in main() in udev.c. Please look it over. | |||
2005-04-26 | [PATCH] clean up some debugging stuff in namedev.c | greg@kroah.com | |
2005-04-26 | [PATCH] do not build the tdb binary programs, only the objects. | greg@kroah.com | |
Now it's not necessary to have gdbm to build properly. | |||
2005-04-26 | [PATCH] print udev pid | olh@suse.de | |
makes debugging easier. | |||
2005-04-26 | [PATCH] Fix TDB cross compilation | lethal@linux-sh.org | |
The merge of tdb ended up breaking the ability to cross compile again, here's a bk patch that yanks CC out of the tdb Makefile, and in turn falls back on the exported CC value from the top-level Makefile which correctly sets it based off of the CROSS value. | |||
2005-04-26 | [PATCH] merge tdb into the build process. | greg@kroah.com | |
2005-04-26 | [PATCH] udevdb prototype | dsteklof@us.ibm.com | |
Here's an "idea" of what I had in mind for udevdb. Let me preface the code with a few remarks: 1) I was expecting to write this udevdb for udev to keep track of devices. I was planning an external package that depends upon udev to provide an external API to the udevdb database. The calls for the interface would be read only access. Not sure how you want to do packaging, if having a separate package is ok or having it included in udev. 2) I created it as it is because udev isn't a daemon. So, the open database call doesn't take any parameters. My plan was to create a udevdb_init function that took arguments for initializing the db to start, where you could specify in memory only or a file location. This can all be filled in. 3) I hacked the Makefile to get it to work. Not sure how you'd want that in the future. 4) This assumes TDB has been installed elsewhere, you would need to edit your Makefile and point it to the header and library locations. How do you want to do TDB in udev? Do you want to just reference it and make udev dependent on that package being installed. Or should we do what samba does and include a limited tdb version in udev? 5) Again, I hacked udev into your existing code. In the future, I'd probably make a function around the filling out the udevice before calling the store command. Didn't know if you wanted to change your add device function to use struct udevice rather than having everything separate. 6) Not sure what we should include in the udevice structure that's stored by udev. I made a stab at a first shot - we can add and remove of course, this was a first pass. I've come to realize - with you including libsysfs in udev, the "external" interface that references udevdb could make use of getting information from through libsysfs from sysfs and doesn't need to be in udevdb. 7) I could write a namedevdb for namedev's device management if you wanted. | |||
2005-04-26 | [PATCH] Added tdb code from latest cvs version in the samba tree | greg@kroah.com | |
2005-04-26 | [PATCH] added my name to the .spec file. | greg@kroah.com | |
2005-04-26 | [PATCH] udev spec file | lethal@linux-sh.org | |
Here's a relatively rudimentary patch that addes udev.spec. With this, you can rpm -ta the tarball and generate rpms. I've also attached the ones I build on my RH 7.3 host incase they are of interest to you. | |||
2005-04-26 | [PATCH] udev/libsysfs cross compile fixes | lethal@linux-sh.org | |
I noticed that libsysfs doesn't inherently grab cross compilation arguments that are set in the top-level Makefile, so I've come up with the following patch to fix this. With the patch, I can succesfully cross compile for other architectures (such as sh) by doing 'make ARCH=sh CROSS=sh-linux-' in the top-level directory. | |||
2005-04-26 | [PATCH] minor cleanups. | greg@kroah.com | |
2005-04-26 | [PATCH] cleanup the mknod code a bit. | greg@kroah.com | |
2005-04-26 | [PATCH] remove mknod callout | greg@kroah.com | |
Patch from "Guo, Min" <min.guo@intel.com> | |||
2005-04-26 | [PATCH] handle new major:minor format of dev files that showed up in ↵ | greg@kroah.com | |
2.6.0-test2-bk3 or so. | |||
2005-04-26 | [PATCH] oops, everything was getting created as 000 mode, try to fix this up, | greg@kroah.com | |
2005-04-26 | [PATCH] more test stuff... | greg@kroah.com | |
2005-04-26 | [PATCH] removed unneeded stuff from udev.h | greg@kroah.com | |
2005-04-26 | [PATCH] added 0.2 change log info.udev/v002 | greg@kroah.com | |
2005-04-26 | [PATCH] start working on label support, and fix some segfaults for block ↵ | greg@kroah.com | |
devices. | |||
2005-04-26 | [PATCH] test config file changes... | greg@kroah.com | |
2005-04-26 | [PATCH] add NUMBER support (basically same logic as TOPOLOGY, perhaps we ↵ | greg@kroah.com | |
should merge this...) | |||
2005-04-26 | [PATCH] added topology support. | greg@kroah.com | |
2005-04-26 | [PATCH] got REPLACE to work properly. | greg@kroah.com | |
2005-04-26 | [PATCH] make struct config_device contain a struct device_attr instead of ↵ | greg@kroah.com | |
duplicating the mess. | |||
2005-04-26 | [PATCH] block test | greg@kroah.com | |
2005-04-26 | [PATCH] split the tests up into different files. | greg@kroah.com | |
2005-04-26 | [PATCH] split udev main logic into udev-add and udev-remove. | greg@kroah.com | |
2005-04-26 | [PATCH] Clean up the namedev interface a bit, making the code smaller... | greg@kroah.com | |
2005-04-26 | [PATCH] update the tests to handle block devices too. | greg@kroah.com | |
2005-04-26 | [PATCH] add initial libsysfs support... | greg@kroah.com | |
needs lots more cleanup, but is much nicer than doing this by hand... | |||
2005-04-26 | [PATCH] added libsysfs to the build. | greg@kroah.com | |