source: udev/Makefile @ ba879f8

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

Fixed Device Mapper Installation

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