1 | INITMODE=754 |
---|
2 | DIRMODE=755 |
---|
3 | SCRIPTMODE=755 |
---|
4 | RULESMODE=644 |
---|
5 | CONFMODE=644 |
---|
6 | |
---|
7 | all: help |
---|
8 | |
---|
9 | install: device_dirs device_links rules scripts boot mknod_devices |
---|
10 | |
---|
11 | rules: |
---|
12 | install -d ${DESTDIR}/etc/udev/rules.d |
---|
13 | install -m ${RULESMODE} 05-udev-early.rules ${DESTDIR}/etc/udev/rules.d/05-udev-early.rules |
---|
14 | install -m ${RULESMODE} 35-helper.rules ${DESTDIR}/etc/udev/rules.d/35-helper.rules |
---|
15 | install -m ${RULESMODE} 40-modprobe.rules ${DESTDIR}/etc/udev/rules.d/40-modprobe.rules |
---|
16 | install -m ${RULESMODE} 50-udev.rules ${DESTDIR}/etc/udev/rules.d/50-udev.rules |
---|
17 | install -m ${RULESMODE} 55-sound.rules ${DESTDIR}/etc/udev/rules.d/55-sound.rules |
---|
18 | install -m ${RULESMODE} 60-persistent.rules ${DESTDIR}/etc/udev/rules.d/60-persistent.rules |
---|
19 | install -m ${RULESMODE} 90-user.rules ${DESTDIR}/etc/udev/rules.d/90-user.rules |
---|
20 | install -m ${RULESMODE} 95-debug.rules ${DESTDIR}/etc/udev/rules.d/95-debug.rules |
---|
21 | |
---|
22 | scripts: |
---|
23 | install -m ${SCRIPTMODE} load_floppy_module.sh ${DESTDIR}/lib/udev/load_floppy_module.sh |
---|
24 | install -m ${SCRIPTMODE} input.sh ${DESTDIR}/lib/udev/input.sh |
---|
25 | |
---|
26 | boot: |
---|
27 | install -d ${DESTDIR}/usr/share/udev |
---|
28 | install -d ${DESTDIR}/etc/rc.d/rcsysinit.d |
---|
29 | install -d ${DESTDIR}/etc/rc.d/init.d |
---|
30 | install -m ${INITMODE} udev ${DESTDIR}/etc/rc.d/init.d/udev |
---|
31 | install -m ${INITMODE} udev_retry ${DESTDIR}/etc/rc.d/init.d/udev_retry |
---|
32 | install -m ${SCRIPTMODE} show_event_log ${DESTDIR}/usr/share/udev/show_event_log |
---|
33 | ln -sf ../init.d/udev ${DESTDIR}/etc/rc.d/rcsysinit.d/S10udev |
---|
34 | ln -sf ../init.d/udev_retry ${DESTDIR}/etc/rc.d/rcsysinit.d/S45udev_retry |
---|
35 | |
---|
36 | device_dirs: |
---|
37 | install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices |
---|
38 | install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/pts |
---|
39 | install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/shm |
---|
40 | install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/net |
---|
41 | |
---|
42 | device_links: |
---|
43 | ln -snf /proc/self/fd ${DESTDIR}/lib/udev/devices/fd |
---|
44 | ln -snf /proc/self/fd/0 ${DESTDIR}/lib/udev/devices/stdin |
---|
45 | ln -snf /proc/self/fd/1 ${DESTDIR}/lib/udev/devices/stdout |
---|
46 | ln -snf /proc/self/fd/2 ${DESTDIR}/lib/udev/devices/stderr |
---|
47 | ln -snf /proc/kcore ${DESTDIR}/lib/udev/devices/core |
---|
48 | |
---|
49 | mknod_devices: |
---|
50 | @if [ "$$UID" = "0" ]; then \ |
---|
51 | if ! [ -e ${DESTDIR}/lib/udev/devices/null ]; then \ |
---|
52 | mknod -m 0666 ${DESTDIR}/lib/udev/devices/null c 1 3 ;\ |
---|
53 | fi \ |
---|
54 | fi |
---|
55 | @if [ "$$UID" = "0" ]; then \ |
---|
56 | if ! [ -e ${DESTDIR}/lib/udev/devices/console ]; then \ |
---|
57 | mknod -m 0600 ${DESTDIR}/lib/udev/devices/console c 5 1 ;\ |
---|
58 | fi \ |
---|
59 | fi |
---|
60 | @if [ "$$UID" != "0" ]; then \ |
---|
61 | if ! [ -e ${DESTDIR}/lib/udev/devices/null ]; then \ |
---|
62 | echo "You will need to issue the following command as the root user" ;\ |
---|
63 | echo "" ;\ |
---|
64 | echo "mknod -m 0666 ${DESTDIR}/lib/udev/devices/null c 1 3" ;\ |
---|
65 | fi \ |
---|
66 | fi |
---|
67 | @if [ "$$UID" != "0" ]; then \ |
---|
68 | if ! [ -e ${DESTDIR}/lib/udev/devices/console ]; then \ |
---|
69 | echo "mknod -m 0600 ${DESTDIR}/lib/udev/devices/console c 5 1" ;\ |
---|
70 | echo "" ;\ |
---|
71 | fi \ |
---|
72 | fi |
---|
73 | |
---|
74 | help: |
---|
75 | @echo "command description" |
---|
76 | @echo "---------------------------------------------------------------------------------------" |
---|
77 | @echo "make install install udev rules package and helper scripts" |
---|
78 | @echo "make install-network install network helper package" |
---|
79 | @echo "make install-network-upgrade upgrades current network helper package" |
---|
80 | @echo "---------------------------------------------------------------------------------------" |
---|
81 | |
---|
82 | install-helper-functions: |
---|
83 | install -d ${DESTDIR}/lib/udev |
---|
84 | install -d ${DESTDIR}/etc/sysconfig |
---|
85 | install -m 644 contrib/common/helper.functions ${DESTDIR}/lib/udev/helper.functions |
---|
86 | install -m 644 contrib/common/udev_helper ${DESTDIR}/etc/sysconfig/udev_helper |
---|
87 | |
---|
88 | install-network: install-helper-functions install-network-update |
---|
89 | install -d ${DESTDIR}/etc/udev/rules.d/ |
---|
90 | @echo "Adding rules to ${DESTDIR}/etc/udev/rules.d/35-helper.rules." |
---|
91 | @cp ${DESTDIR}/etc/udev/rules.d/35-helper.rules /tmp/first |
---|
92 | @cat /tmp/first contrib/network/rules > ${DESTDIR}/etc/udev/rules.d/35-helper.rules 2>&1 |
---|
93 | @rm -f ${DESTDIR}/etc/rc.d/rc2.d/K80network |
---|
94 | @rm -f ${DESTDIR}/etc/rc.d/rc{3,4,5}.d/S20network |
---|
95 | |
---|
96 | install-network-update: |
---|
97 | install -d ${DESTDIR}/lib/udev |
---|
98 | install -d ${DESTDIR}/etc/rc.d/init.d |
---|
99 | install -m ${SCRIPTMODE} contrib/network/network_helper.sh ${DESTDIR}/lib/udev/network_helper.sh |
---|
100 | install -m ${INITMODE} contrib/network/network ${DESTDIR}/etc/rc.d/init.d/network |
---|
101 | |
---|
102 | .PHONY: all install device_dirs device_links rules scripts boot mknod_devices \ |
---|
103 | help install-helper-functions install-network install-network-update |
---|