|
Last change
on this file since 2866 was 2850, checked in by Bruno Cornec, 15 years ago |
|
svn merge -r 2773:2849 2.2.9 in 2.2.10
- Adds 3 binaries called potentially by udev o support USB key mount at restore time (Victor Gattegno)
- Really support both mkisofs and genisoimage everywhere
- Try to handle netfs_user better in all cases (NFS and SSHFS)
- Improve logging in init script
- Format improvement
- Removes a warning when trying to launch udevadm and it doesn't exist (RHEL 5 e.g.)
- Fix syntax description in mondoarchive man page for -E & -I with |
- Adds download entries for new distro supported (Mageia, Fedora 15, Ubuntu 11.04)
-Fix mindi-get-perl-modules when perl dirs in @INC are symlinks (case on Ubuntu 11.04)
- Fix option --findkernel in case of Xen kernel so that mondoarchive get a correct answer instead of an empty one.
- Fix multi-media restore by umounting it before looping to ask for the next (as if already mounted, will not pass to the next alone)
- Fix 485 by replacing a wrong call to mr_asprintf which was provoking core dumped.
- Fix -E and -I example in man page which were lacking the '|' as separator
- Fix #484 by adding support for the arcmsr driver (to support the Areca ARC-1220 RAID Controller)
- Avoids error msgs if no mondo-restore.cfg file exists (when mindi used stdalone)
- Adds the swapon feature to mindi-busybox
- Attempt to fix Xen kernel support by avoiding to remove xen kernel fro; the possible_kernels list too early, whereas it's used afterwards to get them.
- Fix #481 by supporting the new kbd file in latest Ubuntu 10.10+ (victor.gattegno_at_hp.com)
- Update from Lester Wade on P2V doc including RHEL6 validation and some minor additions
- removes telinit call in busybox o try to fix problems whn reboot at end of restore.
- if -E option for mondoarchive was not specified, variable excp points to NULL, so string exclude_pathes contained '(null)' instead of being avoided (derived from a patch from taguchi_at_ff.iij4u.or.jp)
- fix -maxdepth option for find command. it sould be '-maxdepth .. -name ..', not '-name .. -maxdepth ..' (patch from taguchi_at_ff.iij4u.or.jp)
- Adds an extraversion for revision support
- Adds support for ifconfig and ping for PXE+NFS boot for this version of mindi-busybox
- Example of MINDI_ADDITIONAL_BOOT_PARAMS in mindi.conf added
- fix a compilation error
- Remove an absolute ref in the docs web page
|
|
File size:
2.1 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 | # Used by init
|
|---|
| 10 | /bin/sh
|
|---|
| 11 | /bin/awk
|
|---|
| 12 | /usr/bin/awk
|
|---|
| 13 | /bin/gawk
|
|---|
| 14 | # On Debian
|
|---|
| 15 | /usr/bin/awk
|
|---|
| 16 | /usr/bin/gawk
|
|---|
| 17 | /bin/dd
|
|---|
| 18 | /bin/grep
|
|---|
| 19 | /bin/uname
|
|---|
| 20 | /bin/df
|
|---|
| 21 | /usr/bin/loadkeys
|
|---|
| 22 | # On ArchLinux
|
|---|
| 23 | /bin/loadkeys
|
|---|
| 24 | /bin/pidof
|
|---|
| 25 | /sbin/pidof
|
|---|
| 26 | #On Archlinux
|
|---|
| 27 | /usr/bin/reboot
|
|---|
| 28 | /sbin/reboot
|
|---|
| 29 | /sbin/openvt
|
|---|
| 30 | /usr/bin/openvt
|
|---|
| 31 | /usr/bin/tail
|
|---|
| 32 | /usr/bin/which
|
|---|
| 33 | /usr/bin/strings
|
|---|
| 34 | /usr/bin/test
|
|---|
| 35 | /usr/bin/[
|
|---|
| 36 | /usr/bin/tr
|
|---|
| 37 | /usr/bin/cut
|
|---|
| 38 | /usr/bin/basename
|
|---|
| 39 | /bin/basename
|
|---|
| 40 | /usr/bin/find
|
|---|
| 41 | /bin/stty
|
|---|
| 42 | /bin/echo
|
|---|
| 43 | /bin/chown
|
|---|
| 44 | /bin/mknod
|
|---|
| 45 | /bin/kill
|
|---|
| 46 | /bin/date
|
|---|
| 47 | /bin/cat
|
|---|
| 48 | /bin/ls
|
|---|
| 49 | /bin/ps
|
|---|
| 50 | /bin/umount
|
|---|
| 51 | /bin/dmesg
|
|---|
| 52 | /bin/ln
|
|---|
| 53 | /bin/pwd
|
|---|
| 54 | /bin/grep
|
|---|
| 55 | /bin/vi
|
|---|
| 56 | /bin/mv
|
|---|
| 57 | /bin/chmod
|
|---|
| 58 | /bin/more
|
|---|
| 59 | /bin/[
|
|---|
| 60 | /bin/true
|
|---|
| 61 | /bin/sed
|
|---|
| 62 | /bin/touch
|
|---|
| 63 | /bin/rmdir
|
|---|
| 64 | /bin/cp
|
|---|
| 65 | /bin/tar
|
|---|
| 66 | /bin/rm
|
|---|
| 67 | /bin/mkdir
|
|---|
| 68 | /bin/sleep
|
|---|
| 69 | /bin/uname
|
|---|
| 70 | /etc/services
|
|---|
| 71 | /etc/protocols
|
|---|
| 72 | /etc/shells
|
|---|
| 73 | /etc/termcap
|
|---|
| 74 | /etc/bashrc
|
|---|
| 75 | # For id resolution
|
|---|
| 76 | /etc/nsswitch.conf
|
|---|
| 77 | /lib/libnss_files.so.2
|
|---|
| 78 | /sbin/shutdown
|
|---|
| 79 |
|
|---|
| 80 | # Compression
|
|---|
| 81 | /bin/gzip
|
|---|
| 82 |
|
|---|
| 83 | # Logs
|
|---|
| 84 | /sbin/klogd
|
|---|
| 85 | /sbin/syslogd
|
|---|
| 86 | # On ArchLinux
|
|---|
| 87 | /usr/sbin/syslog-ng
|
|---|
| 88 |
|
|---|
| 89 | # HW related
|
|---|
| 90 | /sbin/fdisk
|
|---|
| 91 | /sbin/hdparm
|
|---|
| 92 |
|
|---|
| 93 | # FS related
|
|---|
| 94 | /bin/mount
|
|---|
| 95 | /sbin/losetup
|
|---|
| 96 | /sbin/mount.ntfs
|
|---|
| 97 | /sbin/mount.ntfs-3g
|
|---|
| 98 | /sbin/fstab-decode
|
|---|
| 99 |
|
|---|
| 100 | # For udev/devfs
|
|---|
| 101 | /sbin/MAKEDEV
|
|---|
| 102 | /etc/init.d/functions
|
|---|
| 103 | # On ArchLinux
|
|---|
| 104 | /etc/rc.d/functions
|
|---|
| 105 | /etc/services
|
|---|
| 106 | /sbin/devfsd
|
|---|
| 107 | /etc/udev
|
|---|
| 108 | /etc/hotplug.d
|
|---|
| 109 | /sbin/udev.static
|
|---|
| 110 | /sbin/udevsend
|
|---|
| 111 | /sbin/udevd
|
|---|
| 112 | /sbin/hwup
|
|---|
| 113 | /sbin/path_id
|
|---|
| 114 | /sbin/scsi_tur
|
|---|
| 115 | # On ArchLinux
|
|---|
| 116 | /sbin/udevadm
|
|---|
| 117 | /sbin/udevstart.static
|
|---|
| 118 | /sbin/udev_volume_id
|
|---|
| 119 | /sbin/start_udev
|
|---|
| 120 | /sbin/udev
|
|---|
| 121 | /sbin/udevstart
|
|---|
| 122 | /sbin/create_static_dev_nodes
|
|---|
| 123 | /etc/sysconfig/udev
|
|---|
| 124 | /sbin/consoletype
|
|---|
| 125 |
|
|---|
| 126 | # Modules
|
|---|
| 127 | /sbin/insmod
|
|---|
| 128 | /sbin/lsmod
|
|---|
| 129 | # On ArchLinux
|
|---|
| 130 | /bin/lsmod
|
|---|
| 131 | /sbin/modprobe
|
|---|
| 132 | /etc/modprobe.d
|
|---|
| 133 | /etc/modprobe.conf
|
|---|
| 134 | /etc/conf.modules
|
|---|
| 135 | /etc/modules.conf.local
|
|---|
| 136 |
|
|---|
| 137 | # For mdadm
|
|---|
| 138 | /sbin/mdadm
|
|---|
| 139 | /sbin/mdassemble
|
|---|
| 140 | /etc/mdadm.conf
|
|---|
| 141 | /etc/mdadm/mdadm.conf
|
|---|
| 142 |
|
|---|
| 143 | # Raid support
|
|---|
| 144 | /sbin/raidstart
|
|---|
| 145 | /etc/raidtab
|
|---|
| 146 |
|
|---|
| 147 | # Tools for multipath support
|
|---|
| 148 | /sbin/multipath
|
|---|
| 149 | /sbin/dmsetup
|
|---|
| 150 | /sbin/kpartx
|
|---|
| 151 | /sbin/dmraid
|
|---|
| 152 | /sbin/scsi_id
|
|---|
| 153 | /sbin/mpath_prio_alua
|
|---|
| 154 | /sbin/mpath_wait
|
|---|
| 155 | /sbin/mpath_ctl
|
|---|
| 156 | /sbin/mpath_prio_emc
|
|---|
| 157 | /sbin/mpath_prio_hds_modular
|
|---|
| 158 | /sbin/mpath_prio_netapp
|
|---|
| 159 | /sbin/mpath_prio_ontap
|
|---|
| 160 | /sbin/mpath_prio_rdac
|
|---|
| 161 | /sbin/mpath_prio_tpc
|
|---|
| 162 |
|
|---|
| 163 | # Not completely mandatory
|
|---|
| 164 | /usr/bin/tty
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.