source: udev/Makefile @ 97548c6

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

r2681@server: jim | 2006-03-22 12:53:41 -0800
Removed udev_retry, handled by udevtrigger now

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