source: udev/Makefile @ 813ebaf

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

r1014@server (orig r1012): jim | 2006-01-06 11:11:35 -0800

r1295@server: jim | 2006-01-06 11:11:20 -0800
Added: missing sysconfig.storage file for mount.sh


  • Property mode set to 100644
File size: 2.8 KB
Line 
1INITMODE=754
2DIRMODE=755
3SCRIPTMODE=755
4RULESMODE=644
5CONFMODE=644
6
7all: install
8
9install: device_dirs device_links rules scripts boot mknod_devices
10
11rules:
12        install -m ${RULESMODE} 05-udev-early.rules ${DESTDIR}/etc/udev/rules.d/05-udev-early.rules
13        install -m ${RULESMODE} 35-helper.rules ${DESTDIR}/etc/udev/rules.d/35-helper.rules
14        install -m ${RULESMODE} 40-modprobe.rules ${DESTDIR}/etc/udev/rules.d/40-modprobe.rules
15        install -m ${RULESMODE} 50-udev.rules ${DESTDIR}/etc/udev/rules.d/50-udev.rules
16        install -m ${RULESMODE} 55-sound.rules ${DESTDIR}/etc/udev/rules.d/55-sound.rules
17        install -m ${RULESMODE} 60-persistent.rules ${DESTDIR}/etc/udev/rules.d/60-persistent.rules
18        install -m ${RULESMODE} 85-mount-fstab.rules ${DESTDIR}/etc/udev/rules.d/85-mount-fstab.rules
19        install -m ${RULESMODE} 95-debug.rules ${DESTDIR}/etc/udev/rules.d/95-debug.rules
20
21scripts:
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
24        install -m ${SCRIPTMODE} mount.sh ${DESTDIR}/lib/udev/mount.sh
25
26boot:
27        install -d ${DESTDIR}/usr/share/udev
28        install -d ${DESTDIR}/etc/sysconfig
29        install -d ${DESTDIR}/etc/rc.d/rcsysinit.d
30        install -d ${DESTDIR}/etc/rc.d/init.d
31        install -m ${CONFMODE} sysconfig.storge ${DESTDIR}/etc/sysconfig/storage
32        install -m ${INITMODE} udev ${DESTDIR}/etc/rc.d/init.d/udev
33        install -m ${INITMODE} udev_retry ${DESTDIR}/etc/rc.d/init.d/udev_retry
34        install -m ${SCRIPTMODE} show_event_log ${DESTDIR}/usr/share/udev/show_event_log
35        ln -sf ../init.d/udev ${DESTDIR}/etc/rc.d/rcsysinit.d/S10udev
36        ln -sf ../init.d/udev_retry ${DESTDIR}/etc/rc.d/rcsysinit.d/S45udev_retry
37
38device_dirs:
39        install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices
40        install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/pts
41        install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/shm
42        install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/net
43
44device_links:
45        ln -snf /proc/self/fd ${DESTDIR}/lib/udev/devices/fd
46        ln -snf /proc/self/fd/0 ${DESTDIR}/lib/udev/devices/stdin
47        ln -snf /proc/self/fd/1 ${DESTDIR}/lib/udev/devices/stdout
48        ln -snf /proc/self/fd/2 ${DESTDIR}/lib/udev/devices/stderr
49        ln -snf /proc/kcore ${DESTDIR}/lib/udev/devices/core
50
51mknod_devices:
52        @echo ""
53        @echo "This step will fail if your not installing as the root user"
54        @echo "If it does, you will need to create these devices manually."
55        @echo "If you get a message saying 'File exists', you can safely"
56        @echo "Ignore this step."
57        @echo ""
58        @echo "Here are the commands for you to run as the root user."
59        @echo ""
60        @echo "mknod -m 0666 ${DESTDIR}/lib/udev/devices/null c 1 3"
61        @echo "mknod -m 0600 ${DESTDIR}/lib/udev/devices/console c 5 1"
62        @mknod -m 0666 ${DESTDIR}/lib/udev/devices/null c 1 3
63        @mknod -m 0600 ${DESTDIR}/lib/udev/devices/console c 5 1
64
65.PHONY: all install device_dirs device_links rules scripts boot mknod_devices
Note: See TracBrowser for help on using the repository browser.