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