]> git.ipfire.org Git - thirdparty/systemd.git/blame - README
[PATCH] remove extra ; in namedev_parse.c
[thirdparty/systemd.git] / README
CommitLineData
d2ce1817
GKH
1
2udev - a userspace implementation of devfs
3
4For more information on the design, and structure of this project, see the
5files in the docs/ directory.
6
7To use:
8
bf3ca56f 9- You must be running a 2.6 version of the Linux kernel.
d2ce1817 10
9ab31422
GKH
11- Your 2.6 kernel must have had CONFIG_HOTPLUG enabled when it was built.
12
bf3ca56f
GKH
13- Make sure sysfs is mounted. udev will figure out where sysfs is mounted, but
14 the traditional place for it is at /sys. You can mount it by hand by running:
15 mount -t sysfs none /sys
d2ce1817 16
bf3ca56f
GKH
17- Make sure you have the latest version of the linux-hotplug scripts. They are
18 available at linux-hotplug.sf.net or from your local kernel.org mirror at:
19 kernel.org/pub/linux/utils/kernel/hotplug/
20 They are required in order for udev to work properly.
d2ce1817 21
bf3ca56f
GKH
22 If for some reason you do not install the hotplug scripts, you must tell the
23 kernel to point the hotplug binary at wherever you install udev at. This can
24 be done by:
25 echo "/sbin/udev" > /proc/sys/kernel/hotplug
d2ce1817 26
bf3ca56f
GKH
27- Build the project:
28 make
d2ce1817 29
7d27ce1d
GKH
30 Note:
31 There are a number of different flags that you can use when building
32 udev. They are as follows:
05230184
GKH
33 prefix
34 set this to the default root that you want udev to be
7d27ce1d
GKH
35 installed into. This works just like the 'configure --prefix'
36 script does. Default value is ''. Only override this if you
37 really know what you are doing.
05230184
GKH
38 USE_KLIBC
39 if set to 'true', udev is built and linked against the
40 included version of klibc. Default value is 'false'.
41 USE_LOG
42 if set to 'true', udev will emit messages to the syslog when
43 it creates or removes device nodes. This is helpful to see
44 what udev is doing. This is enabled by default. Note, if you
45 are building udev against klibc it is recommended that you
46 disable this option (due to klibc's syslog implementation.)
47 USE_DBUS
48 if set to 'true', DBUS messages will be sent everytime udev
7d27ce1d
GKH
49 creates or removes a device node. This requires that DBUS
50 development headers and libraries be present on your system to
51 build properly. Default value is 'false'.
8481f8ce
GKH
52 USE_SELINUX
53 if set to 'true', SELinux support for udev will be built in.
54 This requires that SELinux development headers and libraries be
55 present on your system to build properly. Default value is
56 'false'.
05230184
GKH
57 DEBUG
58 if set to 'true', debugging messages will be sent to the syslog
59 as udev is run. Default value is 'false'.
977083c2
GKH
60 KERNEL_DIR
61 If this is not set it will default to /lib/modules/`uname -r`/build
62 This is used if USE_KLIBC=true to find the kernel include
63 directory that klibc needs to build against. This must be set
64 if you are not building udev while running a 2.6 kernel.
7d27ce1d
GKH
65
66 So, if you want to build udev using klibc with debugging messages, you
67 would do:
66626948 68 make USE_KLIBC=true DEBUG=true
7d27ce1d 69
bf3ca56f
GKH
70- Install the project:
71 make install
d2ce1817 72
bf3ca56f
GKH
73 This will put the udev binary in /sbin, create the /udev and /etc/udev
74 directories, and place the udev configuration files in /etc/udev. You
75 will probably want to edit the namedev.* files to create custom naming
76 rules. More info on how the config files are set up are contained in
77 comments in the files, and is located in the documentation.
78
79- Add and remove devices from the system and marvel as nodes are created
80 and removed in /udev/ based on the device types.
81
82- If you later get sick of it, uninstall it:
83 make uninstall
84
85
9ab31422
GKH
86Things are still quite rough, but it should work properly. If nothing
87seems to happen, make sure your build worked properly by running the
88udev-test.pl script as root in the test/ subdirectory of the udev source
89tree.
90
91Development and documentation help is very much appreciated, see the TODO
92file for a list of things left to be done.
d2ce1817 93
a34ea8f5 94
9ab31422
GKH
95Any comment/questions/concerns please let me and the other udev developers
96know by sending a message to the linux-hotplug-devel mailing list at:
97 linux-hotplug-devel@lists.sourceforge.net
d2ce1817
GKH
98
99greg k-h
100greg@kroah.com
bf3ca56f 101
a34ea8f5 102
0fba2122 103
977083c2 104
8481f8ce 105