[7e161ea] | 1 | INITMODE=754
|
---|
| 2 | DIRMODE=755
|
---|
| 3 | SCRIPTMODE=755
|
---|
| 4 | RULESMODE=644
|
---|
| 5 | CONFMODE=644
|
---|
| 6 |
|
---|
| 7 | all: install
|
---|
| 8 |
|
---|
[4d1a13a] | 9 | install: device_dirs device_links rules scripts boot
|
---|
[7e161ea] | 10 |
|
---|
| 11 | rules:
|
---|
[4d1a13a] | 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
|
---|
[103e3eb] | 15 | install -m ${RULESMODE} 85-mount-fstab.rules ${DESTDIR}/etc/udev/rules.d/85-mount-fstab.rules
|
---|
[4d1a13a] | 16 | install -m ${RULESMODE} 95-debug.rules ${DESTDIR}/etc/udev/rules.d/95-debug.rules
|
---|
[7e161ea] | 17 |
|
---|
| 18 | scripts:
|
---|
[4d1a13a] | 19 | install -m ${SCRIPTMODE} remove_floppy_devices.sh ${DESTDIR}/lib/udev/remove_floppy_devices.sh
|
---|
| 20 | install -m ${SCRIPTMODE} load_floppy_module.sh ${DESTDIR}/lib/udev/load_floppy_module.sh
|
---|
| 21 | install -m ${SCRIPTMODE} ide.sh ${DESTDIR}/lib/udev/ide.sh
|
---|
| 22 | install -m ${SCRIPTMODE} input.sh ${DESTDIR}/lib/udev/input.sh
|
---|
| 23 | install -m ${SCRIPTMODE} mount.sh ${DESTDIR}/lib/udev/mount.sh
|
---|
| 24 | install -m ${CONFMODE} scsi_id.config ${DESTDIR}/etc/scsi_id.config
|
---|
| 25 | install -m ${SCRIPTMODE} udev.count_events ${DESTDIR}/usr/bin/udev.count_events
|
---|
[7e161ea] | 26 |
|
---|
| 27 | boot:
|
---|
[4d1a13a] | 28 | install -d ${DESTDIR}/usr/share/udev
|
---|
| 29 | install -m ${INITMODE} udev ${DESTDIR}/etc/rc.d/init.d/udev
|
---|
| 30 | install -m ${INITMODE} udev_retry ${DESTDIR}/etc/rc.d/init.d/udev_retry
|
---|
| 31 | install -d ${DESTDIR}/var/adm/fillup-templates
|
---|
| 32 | install -m ${CONFMODE} sysconfig.storage ${DESTDIR}/var/adm/fillup-templates/sysconfig.storage
|
---|
| 33 | install -m ${SCRIPTMODE} show_event_log ${DESTDIR}/usr/share/udev/show_event_log
|
---|
| 34 | install -m ${CONFMODE} README.Logging ${DESTDIR}/usr/share/udev/README.Logging
|
---|
| 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/S15udev_retry
|
---|
[7e161ea] | 37 |
|
---|
| 38 | device_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 |
|
---|
| 44 | device_links:
|
---|
[4d1a13a] | 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
|
---|
[7e161ea] | 50 |
|
---|
| 51 | .PHONY: all install device_dirs device_links rules scripts boot
|
---|