Ninjatrappeur's systemd working tree
Find a file
sjoerd@spring.luon.net 4b06c852cb [PATCH] DEVNODE -> DEVNAME transition fixes
It seems that the transition from DEVNODE to DEVNAME wasn't done
  everywhere. This broke udev_dbus for me.

  Attached patch does the transition in the places it wasn't done yet.
2005-04-26 21:35:15 -07:00
docs [PATCH] update RFC-dev.d docs due to DEVNODE to DEVNAME change 2005-04-26 21:35:13 -07:00
etc [PATCH] add hotplug.dev script to handle renamed network devices. 2005-04-26 21:35:13 -07:00
extras [PATCH] DEVNODE -> DEVNAME transition fixes 2005-04-26 21:35:15 -07:00
klibc
libsysfs [PATCH] udevd race conditions and performance, assorted cleanups - take 2 2005-04-26 21:35:13 -07:00
tdb
test [PATCH] tweak net_test a bit. 2005-04-26 21:35:14 -07:00
ChangeLog [PATCH] v024 release 2005-04-26 21:35:15 -07:00
COPYING
dev_d.c [PATCH] DEVNODE -> DEVNAME transition fixes 2005-04-26 21:35:15 -07:00
FAQ
HOWTO-udev_for_dev
klibc_fixups.c [PATCH] udevd race conditions and performance, assorted cleanups - take 2 2005-04-26 21:35:13 -07:00
klibc_fixups.h [PATCH] udevd race conditions and performance, assorted cleanups - take 2 2005-04-26 21:35:13 -07:00
list.h
logging.h
Makefile [PATCH] v024 release 2005-04-26 21:35:15 -07:00
namedev.c [PATCH] put config info in db for netdev 2005-04-26 21:35:14 -07:00
namedev.h [PATCH] dev_d.c file sorting and cleanup 2005-04-26 21:35:12 -07:00
namedev_parse.c [PATCH] dev_d.c file sorting and cleanup 2005-04-26 21:35:12 -07:00
README
TODO
udev-add.c [PATCH] tweak node unlink handling 2005-04-26 21:35:14 -07:00
udev-remove.c [PATCH] DEVPATH for netdev 2005-04-26 21:35:13 -07:00
udev.8.in [PATCH] man page cleanup 2005-04-26 21:35:14 -07:00
udev.c
udev.h [PATCH] DEVPATH for netdev 2005-04-26 21:35:13 -07:00
udev.spec [PATCH] v024 release 2005-04-26 21:35:15 -07:00
udev_config.c [PATCH] DEVPATH for netdev 2005-04-26 21:35:13 -07:00
udev_lib.c [PATCH] DEVNODE -> DEVNAME transition fixes 2005-04-26 21:35:15 -07:00
udev_lib.h [PATCH] DEVNODE -> DEVNAME transition fixes 2005-04-26 21:35:15 -07:00
udevd.8 [PATCH] increase udevd event timeout 2005-04-26 21:35:14 -07:00
udevd.c [PATCH] switch udevd's msg_dump() to #define 2005-04-26 21:35:14 -07:00
udevd.h [PATCH] increase udevd event timeout 2005-04-26 21:35:14 -07:00
udevdb.c [PATCH] netdev - udevdb+dev.d changes 2005-04-26 21:35:13 -07:00
udevdb.h
udevinfo.8 [PATCH] update bk ignore list some more. 2005-04-26 21:35:14 -07:00
udevinfo.c [PATCH] netdev - udevdb+dev.d changes 2005-04-26 21:35:13 -07:00
udevruler.c [PATCH] handle netdev in udevruler 2005-04-26 21:35:14 -07:00
udevsend.c [PATCH] udevd race conditions and performance, assorted cleanups - take 2 2005-04-26 21:35:13 -07:00
udevstart.8 [PATCH] update bk ignore list some more. 2005-04-26 21:35:14 -07:00
udevstart.c [PATCH] udevstart fix 2005-04-26 21:35:14 -07:00
udevtest.8 [PATCH] update bk ignore list some more. 2005-04-26 21:35:14 -07:00
udevtest.c [PATCH] handle the subsytem if provided in udevtest. 2005-04-26 21:35:14 -07:00

udev - a userspace implementation of devfs

For more information on the design, and structure of this project, see the
files in the docs/ directory.

To use:

- You must be running a 2.6 version of the Linux kernel.

- Your 2.6 kernel must have had CONFIG_HOTPLUG enabled when it was built.

- Make sure sysfs is mounted.  udev will figure out where sysfs is mounted, but
  the traditional place for it is at /sys.  You can mount it by hand by running:
  	mount -t sysfs none /sys

- Make sure you have the latest version of the linux-hotplug scripts.  They are
  available at linux-hotplug.sf.net or from your local kernel.org mirror at:
	kernel.org/pub/linux/utils/kernel/hotplug/
  They are required in order for udev to work properly.

  If for some reason you do not install the hotplug scripts, you must tell the
  kernel to point the hotplug binary at wherever you install udev at.  This can
  be done by:
	echo "/sbin/udev" > /proc/sys/kernel/hotplug

- Build the project:
	make

  Note:
      There are a number of different flags that you can use when building
      udev.  They are as follows:
	prefix
		set this to the default root that you want udev to be
		installed into.  This works just like the 'configure --prefix'
		script does.  Default value is ''.  Only override this if you
		really know what you are doing.
	USE_KLIBC
		if set to 'true', udev is built and linked against the
		included version of klibc.  Default value is 'false'.
	USE_LOG
		if set to 'true', udev will emit messages to the syslog when
		it creates or removes device nodes.  This is helpful to see
		what udev is doing.  This is enabled by default.  Note, if you
		are building udev against klibc it is recommended that you
		disable this option (due to klibc's syslog implementation.)
	DEBUG
		if set to 'true', debugging messages will be sent to the syslog
		as udev is run.  Default value is 'false'.
	KERNEL_DIR
		If this is not set it will default to /lib/modules/`uname -r`/build
		This is used if USE_KLIBC=true to find the kernel include
		directory that klibc needs to build against.  This must be set
		if you are not building udev while running a 2.6 kernel.

      So, if you want to build udev using klibc with debugging messages, you
      would do:
	make USE_KLIBC=true DEBUG=true

- Install the project:
	make install

  This will put the udev binary in /sbin, create the /udev and /etc/udev
  directories, and place the udev configuration files in /etc/udev.  You
  will probably want to edit the namedev.* files to create custom naming
  rules.  More info on how the config files are set up are contained in
  comments in the files, and is located in the documentation.

- Add and remove devices from the system and marvel as nodes are created
  and removed in /udev/ based on the device types.

- If you later get sick of it, uninstall it:
	make uninstall


Things are still quite rough, but it should work properly.  If nothing
seems to happen, make sure your build worked properly by running the
udev-test.pl script as root in the test/ subdirectory of the udev source
tree.

Development and documentation help is very much appreciated, see the TODO
file for a list of things left to be done.


Any comment/questions/concerns please let me and the other udev developers
know by sending a message to the linux-hotplug-devel mailing list at:
	linux-hotplug-devel@lists.sourceforge.net

greg k-h
greg@kroah.com