source: udev/Makefile @ c2504ea

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since c2504ea was c2504ea, checked in by Jim Gifford <clfs@…>, 18 years ago

r1099@server (orig r1097): jim | 2006-01-25 11:02:14 -0800

r1111@server: jim | 2006-01-25 10:56:58 -0800
Added: cdrom rules


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