source: MondoRescue/branches/2.2.10/mindi/deplist.d/minimal.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.7 KB
Line 
1# $Id$
2#
3# System Tools that are mandatory inside the initrd
4#
5
6/lib/ld-linux.so.2
7
8# Base Unix commands
9/bin/mt
10/bin/awk
11/bin/gawk
12/bin/dd
13/bin/grep
14/bin/uname
15/bin/df
16/usr/bin/loadkeys
17/sbin/pidof
18
19# Compression
20/bin/gzip
21
22# Logs
23/sbin/klogd
24/sbin/syslogd
25
26# HW related
27/sbin/fdisk
28/sbin/hdparm
29/bin/mount
30/sbin/mount.nfs
31/sbin/mount.nfs4
32/usr/bin/sshfs
33/sbin/mount.fuse
34/usr/bin/fusermount
35/usr/bin/ssh
36# Required by ssh as dlopened
37/usr/lib/libnss_compat.so
38/usr/lib64/libnss_compat.so
39/usr/lib/libnss_files.so
40/usr/lib64/libnss_files.so
41/etc/ssh
42/usr/bin/ulockmgr_server
43/sbin/mount.cifs
44/sbin/mount.cifs3
45/sbin/mount.smb
46/sbin/mount.smb3
47/sbin/mount.smbfs
48/sbin/mount.smbfs3
49/sbin/mount.ntfs
50/sbin/mount.ntfs-3g
51
52# For udev/devfs
53/sbin/MAKEDEV
54/etc/init.d/functions
55/sbin/devfsd
56/etc/udev
57/etc/hotplug.d
58/sbin/udev.static
59/sbin/udevsend
60/sbin/udevd
61/sbin/udevstart.static
62/sbin/udev_volume_id
63/sbin/start_udev
64/sbin/udev
65/sbin/udevstart
66/sbin/create_static_dev_nodes
67/etc/init.d/functions
68
69# Modules
70/sbin/insmod
71/sbin/lsmod
72/sbin/modprobe
73/etc/modprobe.d
74/etc/modprobe.conf
75/etc/conf.modules
76/etc/modules.conf.local
77
78# For mdadm
79/sbin/mdadm
80/sbin/mdassemble
81/etc/mdadm.conf
82/etc/mdadm/mdadm.conf
83
84# Raid support
85/sbin/raidstart
86/etc/raidtab
87
88# Tools for multipath support
89/sbin/multipath
90/sbin/dmsetup
91/sbin/kpartx
92/sbin/dmraid
93/sbin/scsi_id
94/sbin/mpath_prio_alua
95/sbin/mpath_wait
96/sbin/mpath_ctl
97/sbin/mpath_prio_emc
98/sbin/mpath_prio_hds_modular
99/sbin/mpath_prio_netapp
100/sbin/mpath_prio_ontap
101/sbin/mpath_prio_rdac
102/sbin/mpath_prio_tpc
103
104# Network System Tools
105/bin/ping
106/sbin/ifconfig
107/sbin/route
108/sbin/dhclient
109/var/lib/dhcp/dhclient.leases
110
111# Busybox
112/usr/lib/mindi/rootfs/bin/busybox
113/usr/lib64/mindi/rootfs/bin/busybox
Note: See TracBrowser for help on using the repository browser.