1 | INITMODE=754
|
---|
2 | DIRMODE=755
|
---|
3 | SCRIPTMODE=755
|
---|
4 | RULESMODE=644
|
---|
5 | CONFMODE=644
|
---|
6 |
|
---|
7 | all: install
|
---|
8 |
|
---|
9 | install: device_dirs device_link rules scripts boot
|
---|
10 |
|
---|
11 | rules:
|
---|
12 | install -m ${RULESMODE} ${DESTDIR}/etc/udev/rules.d/05-udev-early.rules
|
---|
13 | install -m ${RULESMODE} ${DESTDIR}/etc/udev/rules.d/50-udev.rules
|
---|
14 | install -m ${RULESMODE} ${DESTDIR}/etc/udev/rules.d/60-persistent.rules
|
---|
15 | install -m ${RULESMODE} ${DESTDIR}/etc/udev/rules.d/80-sysconfig.rules
|
---|
16 | install -m ${RULESMODE} ${DESTDIR}/etc/udev/rules.d/95-debug.rules
|
---|
17 |
|
---|
18 | scripts:
|
---|
19 | install -m ${SCRIPTMODE) ${DESTDIR}/lib/udev/remove_floppy_devices.sh
|
---|
20 | install -m ${SCRIPTMODE) ${DESTDIR}/lib/udev/load_floppy_module.sh
|
---|
21 | install -m ${SCRIPTMODE) ${DESTDIR}/lib/udev/ide.sh
|
---|
22 | install -m ${SCRIPTMODE) ${DESTDIR}/lib/udev/firmware.sh
|
---|
23 | install -m ${SCRIPTMODE) ${DESTDIR}/lib/udev/input.sh
|
---|
24 | install -m ${SCRIPTMODE) ${DESTDIR}/lib/udev/mount.sh
|
---|
25 | install -m ${CONFMODE} ${DESTDIR}/etc/scsi_id.config
|
---|
26 | install -m ${SCRIPTMODE) ${DESTDIR}/usr/bin/udev.count_events
|
---|
27 |
|
---|
28 | boot:
|
---|
29 | install -m ${INITMODE} ${DESTDIR}/etc/init.d/boot.udev
|
---|
30 | install -m ${INITMODE} ${DESTDIR}/etc/init.d/boot.udev_retry
|
---|
31 | install -m ${CONFMODE} ${DESTDIR}/var/adm/fillup-templates/sysconfig.storage
|
---|
32 | install -m ${SCRIPTMODE) doc/show_event_log
|
---|
33 | install -m ${CONFMODE} doc/README.Logging
|
---|
34 |
|
---|
35 | device_dirs:
|
---|
36 | install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices
|
---|
37 | install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/pts
|
---|
38 | install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/shm
|
---|
39 | install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/net
|
---|
40 |
|
---|
41 | device_links:
|
---|
42 | ln -sn /proc/self/fd ${DESTDIR}/lib/udev/devices/fd
|
---|
43 | ln -sn /proc/self/fd/0 ${DESTDIR}/lib/udev/devices/stdin
|
---|
44 | ln -sn /proc/self/fd/1 ${DESTDIR}/lib/udev/devices/stdout
|
---|
45 | ln -sn /proc/self/fd/2 ${DESTDIR}/lib/udev/devices/stderr
|
---|
46 | ln -sn /proc/kcore ${DESTDIR}/lib/udev/devices/core
|
---|
47 |
|
---|
48 | .PHONY: all install device_dirs device_links rules scripts boot
|
---|