[7e161ea] | 1 | INITMODE=754
|
---|
| 2 | DIRMODE=755
|
---|
| 3 | SCRIPTMODE=755
|
---|
| 4 | RULESMODE=644
|
---|
| 5 | CONFMODE=644
|
---|
| 6 |
|
---|
| 7 | all: install
|
---|
| 8 |
|
---|
[1f7827a2] | 9 | install: device_dirs device_links rules scripts boot mknod_devices
|
---|
[7e161ea] | 10 |
|
---|
| 11 | rules:
|
---|
[4d1a13a] | 12 | install -m ${RULESMODE} 05-udev-early.rules ${DESTDIR}/etc/udev/rules.d/05-udev-early.rules
|
---|
[1f7827a2] | 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
|
---|
[4d1a13a] | 15 | install -m ${RULESMODE} 50-udev.rules ${DESTDIR}/etc/udev/rules.d/50-udev.rules
|
---|
[1f7827a2] | 16 | install -m ${RULESMODE} 55-sound.rules ${DESTDIR}/etc/udev/rules.d/55-sound.rules
|
---|
[4d1a13a] | 17 | install -m ${RULESMODE} 60-persistent.rules ${DESTDIR}/etc/udev/rules.d/60-persistent.rules
|
---|
| 18 | install -m ${RULESMODE} 95-debug.rules ${DESTDIR}/etc/udev/rules.d/95-debug.rules
|
---|
[7e161ea] | 19 |
|
---|
| 20 | scripts:
|
---|
[4d1a13a] | 21 | install -m ${SCRIPTMODE} load_floppy_module.sh ${DESTDIR}/lib/udev/load_floppy_module.sh
|
---|
| 22 | install -m ${SCRIPTMODE} input.sh ${DESTDIR}/lib/udev/input.sh
|
---|
[7e161ea] | 23 |
|
---|
| 24 | boot:
|
---|
[4d1a13a] | 25 | install -d ${DESTDIR}/usr/share/udev
|
---|
[fea6c8d] | 26 | install -d ${DESTDIR}/etc/rc.d/rcsysinit.d
|
---|
| 27 | install -d ${DESTDIR}/etc/rc.d/init.d
|
---|
[4d1a13a] | 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 -m ${SCRIPTMODE} show_event_log ${DESTDIR}/usr/share/udev/show_event_log
|
---|
| 31 | ln -sf ../init.d/udev ${DESTDIR}/etc/rc.d/rcsysinit.d/S10udev
|
---|
[1f7827a2] | 32 | ln -sf ../init.d/udev_retry ${DESTDIR}/etc/rc.d/rcsysinit.d/S45udev_retry
|
---|
[7e161ea] | 33 |
|
---|
| 34 | device_dirs:
|
---|
| 35 | install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices
|
---|
| 36 | install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/pts
|
---|
| 37 | install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/shm
|
---|
| 38 | install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/net
|
---|
| 39 |
|
---|
| 40 | device_links:
|
---|
[4d1a13a] | 41 | ln -snf /proc/self/fd ${DESTDIR}/lib/udev/devices/fd
|
---|
| 42 | ln -snf /proc/self/fd/0 ${DESTDIR}/lib/udev/devices/stdin
|
---|
| 43 | ln -snf /proc/self/fd/1 ${DESTDIR}/lib/udev/devices/stdout
|
---|
| 44 | ln -snf /proc/self/fd/2 ${DESTDIR}/lib/udev/devices/stderr
|
---|
| 45 | ln -snf /proc/kcore ${DESTDIR}/lib/udev/devices/core
|
---|
[7e161ea] | 46 |
|
---|
[1f7827a2] | 47 | mknod_devices:
|
---|
| 48 | @echo ""
|
---|
| 49 | @echo "This step will fail if your not installing as the root user"
|
---|
| 50 | @echo "If it does, you will need to create these devices manually."
|
---|
| 51 | @echo "If you get a message saying 'File exists', you can safely"
|
---|
| 52 | @echo "Ignore this step."
|
---|
| 53 | @echo ""
|
---|
| 54 | @echo "Here are the commands for you to run as the root user."
|
---|
| 55 | @echo ""
|
---|
| 56 | @echo "mknod -m 0666 ${DESTDIR}/lib/udev/devices/null c 1 3"
|
---|
| 57 | @echo "mknod -m 0600 ${DESTDIR}/lib/udev/devices/console c 5 1"
|
---|
| 58 | @mknod -m 0666 ${DESTDIR}/lib/udev/devices/null c 1 3
|
---|
| 59 | @mknod -m 0600 ${DESTDIR}/lib/udev/devices/console c 5 1
|
---|
| 60 |
|
---|
| 61 | .PHONY: all install device_dirs device_links rules scripts boot mknod_devices
|
---|