source: udev/Makefile@ 6a7c16aa

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 6a7c16aa was 6a7c16aa, checked in by Jim Gifford <clfs@…>, 19 years ago

r998@server (orig r996): jim | 2006-01-03 21:28:00 -0800

r1263@server: jim | 2006-01-03 21:20:19 -0800
Update


  • Property mode set to 100644
File size: 2.2 KB
Line 
1INITMODE=754
2DIRMODE=755
3SCRIPTMODE=755
4RULESMODE=644
5CONFMODE=644
6
7all: install
8
9install: device_dirs device_links rules scripts boot
10
11rules:
12 install -m ${RULESMODE} 05-udev-early.rules ${DESTDIR}/etc/udev/rules.d/05-udev-early.rules
13 install -m ${RULESMODE} 50-udev.rules ${DESTDIR}/etc/udev/rules.d/50-udev.rules
14 install -m ${RULESMODE} 60-persistent.rules ${DESTDIR}/etc/udev/rules.d/60-persistent.rules
15 install -m ${RULESMODE} 85-mount-fstab.rules ${DESTDIR}/etc/udev/rules.d/85-mount-fstab.rules
16 install -m ${RULESMODE} 95-debug.rules ${DESTDIR}/etc/udev/rules.d/95-debug.rules
17
18scripts:
19 install -m ${SCRIPTMODE} load_floppy_module.sh ${DESTDIR}/lib/udev/load_floppy_module.sh
20 install -m ${SCRIPTMODE} ide.sh ${DESTDIR}/lib/udev/ide.sh
21 install -m ${SCRIPTMODE} input.sh ${DESTDIR}/lib/udev/input.sh
22 install -m ${SCRIPTMODE} mount.sh ${DESTDIR}/lib/udev/mount.sh
23 install -m ${CONFMODE} scsi_id.config ${DESTDIR}/etc/scsi_id.config
24 install -m ${SCRIPTMODE} udev.count_events ${DESTDIR}/usr/bin/udev.count_events
25
26boot:
27 install -d ${DESTDIR}/usr/share/udev
28 install -m ${INITMODE} udev ${DESTDIR}/etc/rc.d/init.d/udev
29 install -m ${INITMODE} udev_retry ${DESTDIR}/etc/rc.d/init.d/udev_retry
30 install -d ${DESTDIR}/var/adm/fillup-templates
31 install -m ${CONFMODE} sysconfig.storage ${DESTDIR}/var/adm/fillup-templates/sysconfig.storage
32 install -m ${SCRIPTMODE} show_event_log ${DESTDIR}/usr/share/udev/show_event_log
33 install -m ${CONFMODE} README.Logging ${DESTDIR}/usr/share/udev/README.Logging
34 ln -sf ../init.d/udev ${DESTDIR}/etc/rc.d/rcsysinit.d/S10udev
35 ln -sf ../init.d/udev_retry ${DESTDIR}/etc/rc.d/rcsysinit.d/S15udev_retry
36
37device_dirs:
38 install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices
39 install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/pts
40 install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/shm
41 install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/net
42
43device_links:
44 ln -snf /proc/self/fd ${DESTDIR}/lib/udev/devices/fd
45 ln -snf /proc/self/fd/0 ${DESTDIR}/lib/udev/devices/stdin
46 ln -snf /proc/self/fd/1 ${DESTDIR}/lib/udev/devices/stdout
47 ln -snf /proc/self/fd/2 ${DESTDIR}/lib/udev/devices/stderr
48 ln -snf /proc/kcore ${DESTDIR}/lib/udev/devices/core
49
50.PHONY: all install device_dirs device_links rules scripts boot
Note: See TracBrowser for help on using the repository browser.