source: MondoRescue/branches/2.2.10/mindi/rootfs/etc/udev-links.conf@ 2444

Last change on this file since 2444 was 2444, checked in by Bruno Cornec, 15 years ago
  • priority given to env var for tmpdir
  • fuse FS excluded from tmpdir computation
  • Improves udev timeout handling
  • fuse device is needed at restore time for sshfs
  • Avoids comment analysis in the new code handling deplist.d
  • Avoids error message if some ssh conf files do not exist
  • Improvements on sshfs/ssh management in restore mode
  • Include now all minimal requirements for sshfs
  • Fix udev support in init for Mandriva 2009.1 (udevadm settle is blocking)
  • Improve deplist.d/* files
  • adds libnss for ssh support in boot disk
  • Solve a memory management issue in DSF module (strtok => mr_strtok)
  • DSF now also supports partitions in addition to full disks
  • Adds debug in open_and_list_dir
  • Improve user management for NetFS cases
  • ssh in the restore env needs some dlopened libs (libnss_compat|files)
  • Warning emited in case of duplicate mountpoints or devices in fstab found
  • Use only the AWK veriable everywhere and not the awk command
  • Simplify GetInitrdFilesystemToUse which doesn't need to detect everything, but just know if it's initramfs (new mode) or a compressed FS ext2/3 (older mode) as initrd is anyway re-made by mindi. Should fix #353

(Backport from 2.2.9)

File size: 1.0 KB
Line 
1# List device nodes that need to be created by udev:
2
3# Standard nodes:
4L fd /proc/self/fd
5L stdin /proc/self/fd/0
6L stdout /proc/self/fd/1
7L stderr /proc/self/fd/2
8L core /proc/kcore
9#L sndstat /proc/asound/oss/sndstat
10#L MAKEDEV /sbin/MAKEDEV
11
12# These are needed for fs to be mounted:
13D pts
14D shm
15
16# These are needed because their drivers cannot be autoprobed in any way:
17M fd0 b 2 0
18M fd1 b 2 1
19M ppp c 108 0
20M loop0 b 7 0
21D net
22M net/tun c 10 200
23M raw1394 c 171 0
24M sg0 c 21 0
25M sg1 c 21 1
26M sr0 b 11 0
27M sr1 b 11 1
28M st0 c 9 0
29M st1 c 9 1
30M parport0 c 99 0
31D cpu
32D cpu/0
33M cpu/0/cpuid c 203 0
34M cpu/0/microcode c 10 184
35M cpu/0/msr c 202 0
36M lp0 c 6 0
37M rawctl c 162 0
38# sometimes, nvidia driver is slow to create these devices and X failed to start:
39M nvidia0 c 195 0
40M nvidiactl c 195 255
41
42# Addition for mindi
43M tty0 c 4 0
44M tty1 c 4 1
45M tty2 c 4 2
46M tty3 c 4 3
47M tty4 c 4 4
48M tty5 c 4 5
49M tty6 c 4 6
50M tty7 c 4 7
51M tty8 c 4 8
52M ttyS0 c 4 64
53M ttyS1 c 4 65
54L console /dev/tty0
55L tty /dev/tty0
56
57M null c 1 3
58M fuse c 10 229
Note: See TracBrowser for help on using the repository browser.