[PATCH] added 0.2 change log info.

This commit is contained in:
greg@kroah.com 2003-07-24 19:59:52 -04:00 committed by Greg KH
parent 03e64c8f8c
commit cee360d32e
4 changed files with 13 additions and 6 deletions

View File

@ -1,2 +1,9 @@
0.1 - Added a bit of documentation to the README and TODO files. 0.2 - added namedev
0.01 - initial release now used a snapshot of libsysfs.
Can now handle the 5 different naming schemes.
Was released based on my OLS 2003 presentation.
Lots still left to do, but it kinda works better...
0.1 - Added a bit of documentation to the README and TODO files.
0.01 - initial release

View File

@ -22,7 +22,7 @@ DEBUG = true
ROOT = udev ROOT = udev
VERSION = 0.1 VERSION = 0.2
INSTALL_DIR = /usr/local/bin INSTALL_DIR = /usr/local/bin
RELEASE_NAME = $(ROOT)-$(VERSION) RELEASE_NAME = $(ROOT)-$(VERSION)

4
README
View File

@ -8,9 +8,7 @@ To use:
- Edit the udev.h file and replace the following variables with values - Edit the udev.h file and replace the following variables with values
that make sense for your system: that make sense for your system:
#define SYSFS_ROOT "/sys" #define UDEV_ROOT "/udev/"
#define UDEV_ROOT "/home/greg/linux/udev/"
#define DEV_FILE "/dev"
#define MKNOD "/bin/mknod" #define MKNOD "/bin/mknod"
The only value most people will have to change is the UDEV_ROOT The only value most people will have to change is the UDEV_ROOT
variable, as I doubt you really want device nodes to be created in my variable, as I doubt you really want device nodes to be created in my

2
TODO
View File

@ -1,6 +1,8 @@
- use mknod(2) and not execute mknod(1) - use mknod(2) and not execute mknod(1)
- add klibc to the build process (or make it easier to do) to get - add klibc to the build process (or make it easier to do) to get
smaller binary smaller binary
- document the config file format (it will change over time...)
- persistant naming database backend
- make program work like design says it should (three parts, not 1) - make program work like design says it should (three parts, not 1)
- add hooks to call D-BUS when new node is created or removed - add hooks to call D-BUS when new node is created or removed
- lots of other stuff... - lots of other stuff...