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