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