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