source: MondoRescue/branches/3.2/mindi/mindi@ 3304

Last change on this file since 3304 was 3304, checked in by Bruno Cornec, 10 years ago
  • Fix isolinux.bin location ofr recent Debian distro
  • Property svn:executable set to *
  • Property svn:keywords set to Rev Id
File size: 120.3 KB
Line 
1#!/bin/bash
2
3# $Id: mindi 3304 2014-06-30 07:49:36Z bruno $
4#
5#-----------------------------------------------------------------------------
6# mindi - mini-Linux distro based on the user's filesystem & distribution
7#
8# Mindi can create a multi-image boot/root kit. The first image is the boot
9# disk: it contains a kernel, a ramdisk etc. The second disk is data disk #1;
10# the third disk is data disk #2; and so it goes.
11#
12# See http://www.mondorescue.org for details.
13#-----------------------------------------------------------------------------
14
15### Which arch are we on (useful for ia64 port)
16ARCH=`/bin/uname -m`
17KERVERRUN=`/bin/uname -r`
18# By default we use the running kernel as a reference
19KERVER=$KERVERRUN
20
21# In case of problem with udev you can try to add udevdebug
22MINDI_ADDITIONAL_BOOT_PARAMS="devfs=nomount noresume selinux=0 barrier=off udevtimeout=10"
23MINDI_DEFAULT_BOOT_OPTION="interactive"
24# For a CD Recovery use 10000 instead rather. Beware till Hardcoded below. Planned to be changed on the perl version
25# So this parameter only applies to non CD recovery.
26MINDI_BOOT_TIMEOUT="300"
27
28MINDI_REV=PBREV
29MINDI_VER=PBVER
30
31MINDI_VERSION=${MINDI_VER}-r$MINDI_REV
32MINDI_PREFIX=XXX
33MINDI_CONF=YYY
34MINDI_SBIN=${MINDI_PREFIX}/sbin
35MINDI_LIB=LLL
36MINDI_CACHE=/var/cache/mindi
37
38MRCFG=mondorestore.cfg
39
40# Temporary directory for mindi
41TMPDIR=/tmp
42
43EXTRA_SPACE=120000 # increase if you run out of ramdisk space
44BOOT_SIZE=65600 # size of the boot disk
45
46PROMPT_MAKE_CD_IMAGE="yes"
47 # Ask if you want to make a CD Image to be written?
48 # if this is set to 'no', then the image will be created automatically
49
50PROMPT_MAKE_USB_IMAGE="yes"
51 # Ask if you want to make a USB Image to be written?
52 # if this is set to 'no', then the image will be created automatically
53
54USE_OWN_KERNEL="yes"
55 # If set to "no", you will be prompted for whether or not
56 # you want to use your own kernel, or the supplied default.
57 # If "yes" mindi will automatically use your own kernel.
58
59KERNEL_IS_XEN="no"
60 # If set to "no", the kernel is not a Xen kernel
61 # If "yes", mindi will modify isolinux.cfg for the Xen kernel.
62xenkernelpath=""
63
64MY_FSTAB=/etc/fstab
65TAPE_MODS="ht st osst ide-tape ide_tape"
66SCSI_MODS="3w-xxxx 3w_xxxx 3w_9xxx 3w-9xxx 53c7,8xx a100u2w a320raid aacraid adpahci advansys aha152x aha1542 aha1740 aic79xx aic79xx_mod aic7xxx aic7xxx_mod aic7xxx_old AM53C974 atp870u BusLogic cciss cpqfc hpsa dmx3191d dpt_i2o dtc eata eata_dma eata_pio fdomain gdth g_NCR5380 i2o_block ide-scsi ieee1394 imm in2000 initio ips iscsi be2iscsi cxgb3i cxgb3 cxgb4i cxgb4 uio isp megaraid megaraid_mbox megaraid_sas mega_sr mptscsih mptsas mptspi mptfc mptscsi mptctl NCR53c406a ncr53c8xx nsp32 pas16 pci2000 pci2220i pcmcia ppa psi240i qla1280 qla2200 qla2300 qla2400 qla2xxx qlogicfas qlogicfc qlogicisp qlogicfas qlogicfas408 raw1394 scsi_mod sd_mod seagate sg sim710 sr_mod sym53c416 sym53c8xx sym53c8xx_2 t128 tmscsim u14-34f ultrastor wd7000 vmhgfs intermodule emcpdm emcpgpx emcpmpx emcp dc395x diskdumplib arcmsr"
67
68# ide-probe-mod
69IDE_MODS="ide ide-floppy floppy ide-generic ide-detect ide-mod ide-disk ide_disk ide-cd ide_cd ide_cd_mod ide-cd_mod ide-cs edd paride ata_generic ata_piix dock via82cxxx generic nvidia ahci sata_nv cmd64x pata_via pata_amd pata_marvell pata_serverworks pata_sis pata_sil680 pata_jmicron pata_atiixp pata_acpi amd74xx sis5513 jmicron sata_promise sata_via serverworks sata_svw virtio"
70PCMCIA_MODS="pcmcia_core ds yenta_socket"
71USB_MODS="usb-storage usb_storage usb-ohci usb-uhci input hid uhci_hcd uhci-hcd ehci-hcd ehci-pci ohci-hcd ohci_hcd ohci-pci xhci xhci-hcd usbkbd usbhid keybdev mousedev scsi_mod ff-memless ums_cypress ums-cypress cp210x usbserial"
72NET_MODS="nfs nfsv2 nfsv3 nfsv4 nfsd loop mii 3c59x e100 bcm5700 cnic be2net bnx2 bnx2x bnx2i mdio e1000 e1000e igb dca eepro100 ne2k-pci tg3 pcnet32 8139cp 8139too 8390 forcedeth vmxnet vmxnet3 vmnet exportfs fuse netbk xenblktap r8169 virtio_net via_rhine ipv6 ptp"
73CDROM_MODS="$TAPE_MODS $IDE_MODS $USB_MODS $PCMCIA_MODS $SCSI_MODS $NET_MODS cdrom isocd isofs sg sr_mod iso9660 vfat fat"
74# Those modules will only go on the backup media, not the boot media.
75EXTRA_MODS="$CDROM_MODS loop md-mod lvm-mod dm-mod dm_mod dm-multipath dm-emc dm-hp-sw dm-rdac dm-region-hash multipath jfs xfs btrfs reiserfs ext2 ext3 minix nfs nfsd ext4 ocfs2 configfs vxfs "
76# Replace with that line for HP OCMP e.g.
77#DENY_MODS="MPS_Driver_Mapper mps octtldrv tscttl streams kqemu fdomain"
78DENY_MODS="kqemu vxfen"
79# Force some modules to be included
80FORCE_MODS=""
81
82# Find MBR in case of bootable USB device to build
83MBRFILE=/usr/lib/syslinux/mbr.bin
84[ ! -r "$MBRFILE" ] && MBRFILE=/usr/lib64/syslinux/mbr.bin
85[ ! -r "$MBRFILE" ] && MBRFILE=/usr/share/syslinux/mbr.bin
86[ ! -r "$MBRFILE" ] && MBRFILE=/usr/share/lib/syslinux/mbr.bin
87[ ! -r "$MBRFILE" ] && MBRFILE=/usr/share/lib64/syslinux/mbr.bin
88
89LOGFILE=/var/log/mindi.log
90BOOT_MEDIA_MESSAGE="\
91To format and restore all files automatically, type '0enuke07' <enter>.\n\
92To restore some/all files interactively, type '0einteractive07' <enter>.\n\
93To compare the archives with your filesystem, type '0ecompare07' <enter>.\n\
94To boot to a command-line prompt (expert mode), type '0eexpert07' <enter>.\n\
95\n\
96You may add one or more parameters as well as per the function keys below\n\
97e.g. Type '0enuke denymods=\"fdomain impi_si\"07' to not load these 2 modules\n\
98\n\
99If restoring from a local external disk or USB key, do not connect it \n\
100until the boot-up has finished.\n\
101\n\
102\n0eF107-Main | Boot Parameters 0eF207-1/2 | 0eF307-2/2 | 0eF407-PXE\n\
103"
104FDISK=$MINDI_SBIN/parted2fdisk
105
106# Using a config file allow to overwrite some values
107MINDI_CONFIG="$MINDI_CONF/mindi.conf"
108if [ -f $MINDI_CONFIG ]; then
109 . $MINDI_CONFIG
110fi
111DEPLIST_FILE="$MINDI_CONF/deplist.txt"
112DEPLIST_DIR="$MINDI_CONF/deplist.d"
113
114ISO_CMD="/usr/bin/mkisofs"
115ISO_OPT="-J -r -v -p Mindi -publisher http://www.mondorescue.org -A Mindi"
116
117# Mandriva system e.g. use cdrkit, which uses genisoimage instead of mkisofs.
118# However, they use exactly the same command line parameters, so just
119# use genisoimage if it's available.
120if [ ! -x $ISO_CMD ]; then
121 ISO_CMD=/usr/bin/genisoimage
122fi
123
124
125# Function to log on screen only
126LogScreen() {
127 if [ -e /dev/stderr ] ; then
128 echo -e "$1" >> /dev/stderr
129 elif [ -e /usr/bin/logger ] ; then
130 /usr/bin/logger -s $1
131 fi
132}
133
134# Function to log in log file only
135LogFile() {
136
137 echo -e "$1" >> $LOGFILE
138 if [ _"$2" != _"" ]; then
139 grep -Ev "tar: Removing \`/\'" "$2" >> $LOGFILE
140 fi
141 rm -f "$2"
142}
143
144# Function to log in both screen and logfile
145LogAll() {
146 LogScreen "$1"
147 LogFile "$1" "$2"
148}
149
150# Preserved for compatibility
151LogIt() {
152 LogAll "$1" "$2"
153}
154
155# Last function called before exiting
156# Parameter is exit code value
157# Should be declared here as used immediately below potentialy
158MindiExit() {
159 LogFile "Mindi $MINDI_VERSION is exiting"
160 LogFile "End date : `date`"
161 if [ _"$MONDO_SHARE" != _"" ] ; then
162 echo "------------- mindi logfile included -------------------------" >> /var/log/mondoarchive.log
163 if [ -f $LOGFILE ]; then
164 cat $LOGFILE >> /var/log/mondoarchive.log
165 else
166 echo "No LOGFILE available in that mindi run" >> /var/log/mondoarchive.log
167 fi
168 echo "--------------------------------------------------------------">> /var/log/mondoarchive.log
169 fi
170
171 cd /
172 sync&
173
174 # Clean temporary files only when standalone mindi
175 if [ _"$MINDI_TMP" != _"$MONDO_TMP" ]; then
176 rm -Rf $MINDI_TMP
177 fi
178 exit $1
179}
180
181Die() {
182 local i
183 if [ "$1" = "" ] ; then
184 LogAll "FATAL ERROR"
185 else
186 LogAll "FATAL ERROR. $1"
187 fi
188 if [ _"$2" != _"" ]; then
189 grep -Ev "tar: Removing \`/\'" "$2" >> $LOGFILE
190 fi
191 rm -f "$2"
192
193 LogAll "Please e-mail a copy of $LOGFILE to the mailing list."
194 LogAll "See http://www.mondorescue.org for more information."
195 LogAll "WE CANNOT HELP unless you enclose that file.\n"
196 MindiExit -1
197}
198
199# Now we can create what we need
200MINDI_TMP=`mktemp -d $TMPDIR/mindi.XXXXXXXXXX`
201if [ $? -ne 0 ]; then
202 df $TMPDIR
203 Die "Unable to create a temporary directory ! Check space on $TMPDIR"
204fi
205if [ _"$MINDI_TMP" = _"" ]; then
206 Die "MINDI_TMP is empty, aborting"
207fi
208if [ _"$MINDI_TMP" = _"/" ]; then
209 Die "MINDI_TMP is /, aborting"
210fi
211export MINDI_TMP
212
213# ----------------------------------------------------------------------------
214
215
216AbortHere() {
217 [ "$mountpoint" ] && umount $mountpoint 2>> $LOGFILE
218 Die "Program is terminating in response to signal received from OS/user"
219}
220
221
222Aborted() {
223 trap SIGHUP SIGTERM SIGTRAP SIGINT
224 [ "$MINDI_CACHE" != "" ] && rm -f $MINDI_CACHE/mindi*img $MINDI_CACHE/*gz $MINDI_CACHE/mindi.iso
225 [ "$minidir_root" != "" ] && rm -Rf $minidir_root/*
226 Die "User abort."
227}
228
229
230AddFileToCfgIfExists() {
231 [ -e "$1" ] && echo -en "$2 `cat $1`\n" >> $3
232}
233
234
235AddKeyboardMappingFile() {
236 local mappath r included_list included_item i res ii sss
237 mappath=$1
238 KBDEPTH=$(($KBDEPTH+1))
239 [ "$KBDEPTH" -gt "128" ] && Die "Edit $MINDI_SBIN/mindi and disable FindAndAddUserKeyboardMappingFile (line 2160, approx.)"
240 if [ -e "$bigdir/$mappath" ] ; then
241 LogFile "INFO: $mappath already added"
242 return
243 elif [ -d "$bigdir/$mappath" ] ; then
244 echo "Cannot add $mappath: it's a directory. Sorry."
245 return
246 fi
247 LogFile "INFO: Added kbd map $mappath"
248 if [ ! -e "$mappath" ] ; then
249 mappath=`grep "i[3-8]86" $MINDI_TMP/keymaps.find | grep "$locale[^r][^/]" | grep -vx " *#.*"`
250 if [ ! -e "$mappath" ] ; then
251 LogAll "WARNING: Cannot add $mappath: kbd map file not found"
252 return
253 fi
254 else
255 echo -en "`basename $mappath | tr '.' '#' | sed s/#kmap#gz// | sed s/#inc#gz//` " | tr '#' '.'
256 fi
257
258 #cp -a -n --parents -t $mappath $bigdir 2>> $MINDI_TMP/$$.log || LogAll "WARNING: AKMF -- Could not copy $mappath to $bigdir" $MINDI_TMP/$$.log
259 tar cf - -C / $mappath 2>> $MINDI_TMP/$$.log | (cd "$bigdir" ; tar xf -) || LogAll "WARNING: AKMF -- Could not copy $mappath to $bigdir" $MINDI_TMP/$$.log
260 if [ "`echo $mappath | grep -F ".gz"`" ] ; then
261 included_list=`gzip -dc $mappath | grep -Fi include | sed s/'"'//g | cut -d' ' -f2`
262 else
263 included_list=`grep -Fi include $mappath | sed s/'"'//g | cut -d' ' -f2`
264 fi
265 for included_item in $included_list ; do
266 if [ ! -e "$included_item" ] ; then
267 sss=`grep -F "${included_item}.inc" $MINDI_TMP/keymaps.find`
268 [ "$sss" = "" ] && sss=`grep -F "$included_item" $MINDI_TMP/keymaps.find`
269 for ii in $sss ; do
270 [ -e "$ii" ] && AddKeyboardMappingFile $ii
271 done
272 else
273 AddKeyboardMappingFile $included_item
274 fi
275 done
276}
277
278
279CopyDependenciesToDirectory() {
280 local outdir incoming counter d found tdir
281 outdir=$1
282 mkdir -p $outdir
283 incoming=`ReadLine`
284 counter=0
285 while [ "$incoming" != "" ] ; do
286 # Non absolute file names should not arrive till here => skipped
287 if [ `echo "$incoming" | cut -c1` != '/' ]; then
288 LogAll "WARNING: Unable to handle $incoming"
289 incoming=`ReadLine`
290 continue
291 fi
292 # no parent directory of incoming should be a link, copy is not possible in that case
293 d=`dirname "$incoming"`
294 found="false"
295 while [ $d != "/" -a $found = "false" ]; do
296 [ -h "$d" ] && found="true"
297 d=`dirname "$d"`
298 done
299 if [ -d "$incoming" -a ! -h "$incoming" ]; then
300 find $incoming/* -maxdepth 0 2> /dev/null | CopyDependenciesToDirectory $outdir 0
301 elif [ -e "$incoming" ] && [ $found = "false" ]; then
302 if [ ! -h "$incoming" ]; then
303 tar cf - -C / $incoming 2>> $MINDI_TMP/$$.log | (cd "$outdir" ; tar xf -) || Die "Cannot copy $incoming to $outdir - did you run out of disk space?" $MINDI_TMP/$$.log
304 else
305 tdir=`dirname "$incoming"`
306 if [ ! -e "$outdir/$tdir" ]; then
307 mkdir -p "$outdir/$tdir"
308 fi
309 cp --no-dereference --preserve=all $incoming "$outdir/$tdir"
310 fi
311 # Only uncompress modules if not using udevd
312 if [ "`echo "$incoming" | grep "lib/modules/.*\..*o\.gz"`" != "" ] && [ "`ps auxww | grep -v grep | grep -qw udevd`" != "" ]; then
313 gunzip -f $outdir/$incoming || LogAll "WARNING: Cannot gunzip $outdir/$incoming"
314 fi
315 [ -x "$outdir" ] && StripExecutable $outdir
316 counter=$(($counter+1))
317 LogProgress $counter $2
318 fi
319 incoming=`ReadLine`
320 done
321}
322
323
324CountItemsIn() {
325 local r
326 r=0
327 for q in $1 ; do
328 r=$(($r+1))
329 done
330 echo $r
331}
332
333
334DropOptimizedLibraries() {
335 local outdir filelist list_of_optimized_libraries optimized_lib_name vanilla_lib_name reason msg resolved res
336 filelist=$1
337 outdir=$2
338
339 list_of_optimized_libraries=`grep "lib/i[5-7]86/" $filelist`
340 if [ "$list_of_optimized_libraries" = "" ] ; then
341 return 0
342 fi
343 echo -en "Dropping i686-optimized libraries if appropriate"
344 for optimized_lib_name in $list_of_optimized_libraries ; do
345 echo -en "."
346 reason=""
347 vanilla_lib_name=`echo "$optimized_lib_name" | sed -e 's/i[5-7]86//' -e 's/cmov//' -e 's/nosegneg//' | tr -s '/' '/'`
348 echo "$vanilla_lib_name" >> $filelist
349 LogFile "INFO: Adding $vanilla_lib_name to filelist"
350 mkdir -p $outdir$optimized_lib_name > /dev/null 2> /dev/null
351 rmdir $outdir$optimized_lib_name > /dev/null 2> /dev/null
352
353 # This may return multiple files
354 for resolved in `mr-read-all-link $vanilla_lib_name`; do
355 LogFile "INFO: Adding as deps $resolved to filelist"
356 vanilla_resolved_name=`echo "$resolved" | sed -e 's/i[5-7]86//' -e 's/cmov//' -e 's/nosegneg//' | tr -s '/' '/'`
357 if [ "$vanilla_resolved_name" != "$resolved" ]; then
358 mkdir -p $outdir$resolved> /dev/null 2> /dev/null
359 rmdir $outdir$resolved > /dev/null 2> /dev/null
360 ln -sf $vanilla_resolved_name $outdir$resolved
361 LogFile "INFO: Excluding deps $resolved"
362 grep -Fvx "$resolved" "$filelist" > $filelist.tmp
363 LogFile "INFO: Replacing it with $vanilla_resolved_name"
364 echo "$vanilla_resolved_name" >> $filelist.tmp
365 mv -f $filelist.tmp $filelist
366 fi
367 done
368 done
369 $AWK '{ print $1; }' $filelist | sort -u > $filelist.tmp
370 mv -f $filelist.tmp $filelist
371 echo -e "$DONE"
372}
373
374
375FindAndAddUserKeyboardMappingFile() {
376 local r res mapfile mappath included_item included_list keyfile mp locale
377 LogAll "INFO: Analyzing your keyboard's configuration."
378 KEYDIR=/usr/lib/kbd
379 [ ! -e "$KEYDIR" ] && KEYDIR=/usr/share/kbd # Slackware
380 [ ! -e "$KEYDIR" ] && KEYDIR=/usr/lib/kbd
381 [ ! -e "$KEYDIR" ] && KEYDIR=/usr/share
382 [ ! -e "$KEYDIR" ] && KEYDIR=/etc/condole
383 [ ! -e "$KEYDIR" ] && KEYDIR=/etc/condole-setup
384 [ ! -e "$KEYDIR" ] && KEYDIR=/lib/kbd
385 if [ ! -e "$KEYDIR" ] ; then
386 LogAll "WARNING: Keyboard mapping directory not found. I shall use default map at boot-time."
387 return 0
388 fi
389 if [ -e "/etc/sysconfig/keyboard" ] ; then
390 LogFile "INFO: Red Hat-style config detected."
391 keyfile=/etc/sysconfig/keyboard
392 elif [ -e "/etc/vconsole.conf" ] ; then
393 LogFile "INFO: New Fedora style config detected."
394 keyfile=/etc/vconsole.conf
395 elif [ -e "/etc/rc.d/rc.keymap" ] ; then
396 LogFile "INFO: Slackware-style config detected."
397 keyfile=/etc/rc.d/rc.keymap
398 elif [ -e "/etc/rc.config" ] ; then
399 LogFile "INFO: Debian-style config detected."
400 keyfile=/etc/rc.config
401 elif [ -e "/etc/console/boottime.kmap.gz" ] ; then
402 LogFile "INFO: Debian-style config detected."
403 mkdir -p $bigdir/tmp
404 echo "keymap-lives-here /etc/console/boottime.kmap.gz" >> $bigdir/tmp/$MRCFG
405 KBDEPTH=0
406 mkdir -p $bigdir/etc/console
407 cp /etc/console/boottime.kmap.gz $bigdir/etc/console 2>> $LOGFILE
408 echo ""
409 echo -e "$DONE"
410 return 0
411 elif [ -e "/etc/console-setup/boottime.kmap.gz" ] || [ -e "/etc/console-setup/cached.kmap.gz" ] ; then
412 LogFile "INFO: Ubuntu-style config detected."
413 mkdir -p $bigdir/tmp
414 if [ -e "/etc/console-setup/boottime.kmap.gz" ] ; then
415 kbdfile="/etc/console-setup/boottime.kmap.gz"
416 else
417 kbdfile="/etc/console-setup/cached.kmap.gz"
418 fi
419 echo "keymap-lives-here $kbdfile" >> $bigdir/tmp/$MRCFG
420 KBDEPTH=0
421 mkdir -p $bigdir/etc/console-setup
422 cp $kbdfile $bigdir/etc/console-setup 2>> $LOGFILE
423 echo ""
424 echo -e "$DONE"
425 return 0
426 elif [ -e "/etc/rc.conf" ] ; then
427 LogFile "INFO: ArchLinux config detected."
428 keyfile=/etc/rc.conf
429 elif [ -e "/etc/conf.d/keymaps" ] ; then
430 LogFile "INFO: Gentoo-style config detected."
431 keyfile=/etc/conf.d/keymaps
432 elif [ -e "/etc/X11/xorg.conf.d/00-keyboard.conf" ] ; then
433 LogFile "INFO: X11-style config detected."
434 keyfile=/etc/X11/xorg.conf.d/00-keyboard.conf
435 else
436 LogFile "Searching for rc.config ..."
437 keyfile=`find /etc -name rc.config | head -n1`
438 if [ "$keyfile" = "" ] || [ ! -e "$keyfile" ] ; then
439 LogAll "WARNING: Unknown config detected. Default keyboard map will be used."
440 return
441 else
442 LogFile "INFO: Found $keyfile"
443 fi
444 fi
445 if [ ! -e "$KEYDIR/keymaps" ] ; then
446 LogAll "WARNING: Keyboard mapping directory not found. Default keyboard map will be used."
447 return
448 fi
449 LogFile "INFO: keyfile=$keyfile"
450 # For SLES we need to remove the .map.gz extension Cf #614
451 locale=`grep -F KEYTABLE "$keyfile" | grep -v '^#' | tr -d '"' |cut -d'=' -f2 | sed 's/.map.gz$//'`
452 [ ! "$locale" ] && locale=`grep '.map$' "$keyfile" | sed 's/^.* //'` # Slackware
453 [ ! "$locale" ] && locale=`grep -E '^KEYMAP=' "$keyfile" | grep -v '^#' | tr -d '"' |cut -d'=' -f2` # Gentoo, ArchLinux & New fedora
454 [ ! "$locale" ] && locale=`grep -E 'XkbLayout' "$keyfile" | grep -v '^#' | awk '{print $3}' | tr -d '"'` # Fedora 19
455 LogFile "INFO: locale=$locale"
456 #
457 # Process the keymaps dir once for all
458 # AddKeyboardMappingFile will use it recursively
459 #
460 find $KEYDIR/keymaps > $MINDI_TMP/keymaps.find
461 mp=`grep "i[3-8]86" $MINDI_TMP/keymaps.find | grep -F "/${locale}." | grep -vx " *#.*"`
462 [ ! "$mp" ] && mp=`grep "i[3-8]86" $MINDI_TMP/keymaps.find | grep "$locale[^r][^/]" | grep -vx " *#.*"`
463 # If we have multiple keymaps then log it !!
464 echo "$mp" | grep -q " " >> $LOGFILE
465 if [ $? -eq 0 ]; then
466 LogAll "WARNING: Multiple keymaps found: $mp"
467 LogFile "INFO: The following one will be used"
468 fi
469 for i in $mp ; do
470 mappath=$i
471 [ -e "$i" ] && [ ! -d "$i" ] && break
472 done
473 if [ ! -e "$mappath" ] || [ -d "$mappath" ] ; then
474 mappath=$(find / -wholename "*/kbd/keymaps/*/$locale | head -1")
475 fi
476 LogFile "INFO: mappath = $mappath"
477 if [ ! -e "$mappath" ] || [ -d "$mappath" ] ; then
478 LogAll "WARNING: Keyboard mapping file not found. Default keyboard map will be used."
479 return
480 fi
481 LogAll "INFO: Adding the following keyboard mapping tables: "
482 mkdir -p $bigdir/tmp
483 echo "keymap-lives-here $mappath" >> $bigdir/tmp/$MRCFG
484 KBDEPTH=0
485 AddKeyboardMappingFile $mappath
486 echo ""
487 echo -e "$DONE"
488 rm -f $MINDI_TMP/keymaps.find
489 return 0
490}
491
492
493FindLdlinux32Binary() {
494 LDLINUXC32=/usr/lib/syslinux/ldlinux.c32
495 [ ! -e "$LDLINUXC32" ] && LDLINUXC32=/usr/lib64/syslinux/ldlinux.c32
496 [ ! -e "$LDLINUXC32" ] && LDLINUXC32=/usr/share/syslinux/ldlinux.c32
497 [ ! -e "$LDLINUXC32" ] && LDLINUXC32=/usr/share/lib/syslinux/ldlinux.c32
498 [ ! -e "$LDLINUXC32" ] && LDLINUXC32=/usr/share/lib64/syslinux/ldlinux.c32
499 [ ! -e "$LDLINUXC32" ] && LDLINUXC32=/usr/lib/syslinux/modules/bios/ldlinux.c32
500 [ ! -e "$LDLINUXC32" ] && LDLINUXC32=/usr/lib64/syslinux/modules/bios/ldlinux.c32
501 #[ ! -e "$LDLINUXC32" ] && LDLINUXC32=`find / -name ldlinux.c32 | grep -x "/.*/ldlinux.c32"`
502 if [ ! -e "$LDLINUXC32" ]; then
503 LogFile "INFO: If you use syslinux 5.x, you may miss ldlinux.c32. If your syslinux RPM doesn't include ldlinux.c32, you may want to download another one"
504 LDLINUXC32=/tmp/idoesnthopefullyexist
505 else
506 LogFile "INFO: Found ldlinux.c32 at $LDLINUXC32"
507 fi
508}
509
510
511FindMboot32Binary() {
512 MBOOTC32=/usr/lib/syslinux/mboot.c32
513 [ ! -e "$MBOOTC32" ] && MBOOTC32=/usr/lib64/syslinux/mboot.c32
514 [ ! -e "$MBOOTC32" ] && MBOOTC32=/usr/share/syslinux/mboot.c32
515 [ ! -e "$MBOOTC32" ] && MBOOTC32=/usr/share/lib/syslinux/mboot.c32
516 [ ! -e "$MBOOTC32" ] && MBOOTC32=/usr/share/lib64/syslinux/mboot.c32
517 [ ! -e "$MBOOTC32" ] && MBOOTC32=/usr/lib/syslinux/modules/bios/mboot.c32
518 [ ! -e "$MBOOTC32" ] && MBOOTC32=/usr/lib64/syslinux/modules/bios/mboot.c32
519 [ ! -e "$MBOOTC32" ] && MBOOTC32=`find / -name mboot.c32 | grep -x "/.*/mboot.c32"`
520 [ ! -e "$MBOOTC32" ] && Die "Please install mboot.c32 first. If your syslinux RPM doesn't include mboot.c32, you may download an isolinux RPM from Mondo's website - go to http://www.mondorescue.org/downloads.shtml"
521 LogFile "INFO: Found mboot.c32 at $MBOOTC32"
522}
523
524FindIsolinuxBinary() {
525 ISOLINUX=/usr/lib/isolinux.bin
526 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/lib/syslinux/isolinux.bin
527 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/lib64/syslinux/isolinux.bin
528 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/share/syslinux/isolinux.bin
529 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/share/lib/syslinux/isolinux.bin
530 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/share/lib64/syslinux/isolinux.bin
531 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/lib/ISOLINUX/isolinux.bin
532 [ ! -e "$ISOLINUX" ] && ISOLINUX=`find / -name isolinux.bin | grep -x "/.*/isolinux.bin"`
533 [ ! -e "$ISOLINUX" ] && Die "Please install isolinux first. If your syslinux RPM doesn't include isolinux, you may download an isolinux RPM from Mondo's website - go to http://www.mondorescue.org/downloads.shtml"
534 LogFile "INFO: Found isolinux.bin at $ISOLINUX"
535}
536
537
538GenerateGiantDependencyList() {
539 local incoming loc fname list_of_files i tempfile outfile progress filelist res r mapfile mappath included_list included_item old_pwd tempdepfile modres noof_lines lvmversion lvmresolved
540
541 echo -en "Analyzing dependency requirements"
542 outfile=$1
543 tempfile=$MINDI_TMP/$$.txt
544 incoming=`ReadLine`
545
546 > $tempfile
547 progress=0
548 res=0
549 noof_lines=$2
550 while [ "$incoming" != "" ] ; do
551 if echo "$incoming" | grep -x " *#.*" &> /dev/null ; then
552 incoming=`ReadLine`
553 continue
554 fi
555 if [ "$incoming" = "LVMFILES:" ] ; then
556 break
557 fi
558 filelist=`GenerateListForFile "$incoming"`
559 r=$?
560 [ "$r" -ne "0" ] && LogAll "WARNING: $incoming not found"
561 res=$(($res+$r))
562# LogFile "INFO: '$incoming' generates filelist '$filelist'"
563 for fname in $filelist ; do
564 [ "$fname" != "" ] && echo "$fname" >> $tempfile
565 done
566 progress=$(($progress+1))
567 LogProgress $progress $noof_lines
568 incoming=`ReadLine`
569 done
570 if [ "$incoming" = "LVMFILES:" ] ; then
571 incoming=`ReadLine`
572 lvmversion=""
573 while [ "$incoming" != "" ] ; do
574 if echo "$incoming" | grep -x " *#.*" &> /dev/null ; then
575 incoming=`ReadLine`
576 continue
577 fi
578 filelist=`GenerateListForFile "$incoming"`
579 for tool in $filelist ; do
580 lvmresolved=`readlink -f $tool`
581 if [ "$tool" = "$lvmresolved" ]; then
582 echo "$tool" >> $tempfile
583 elif echo "$lvmresolved" | grep "lvmiopversion" &> /dev/null ; then
584 if [ "$lvmversion" = "" ] ; then
585 lvmversion=`$lvmresolved`
586 echo "$lvmresolved" >> $tempfile
587 fi
588 toolstripped=`echo $tool | $AWK -F / '{print $NF;}'`
589 if [ "$lvmversion" = "200" ]; then
590 # pvdata and lvmcreate_initrd don't exist in LVM2
591 case "$toolstripped" in
592 "pvdata")
593 continue
594 ;;
595 "lvmcreate_initrd")
596 continue
597 ;;
598 esac
599 fi
600 toolpath="/sbin/lvm-"$lvmversion"/"$toolstripped
601 if [ -e "$toolpath" ] ; then
602 echo "$toolpath" >> $tempfile
603 echo "$tool" >> $tempfile
604 else
605 toolpath="/lib/lvm-"$lvmversion"/"$toolstripped
606 fi
607 if [ -e "$toolpath" ] ; then
608 echo "$toolpath" >> $tempfile
609 echo "$tool" >> $tempfile
610 else
611 echo "Where are your LVM-Tools? Couldn't find $tool"
612 fi
613 else
614 echo "$tool" >> $tempfile
615 fi
616 done
617 progress=$(($progress+1))
618 LogProgress $progress $noof_lines
619 incoming=`ReadLine`
620 done
621 fi
622 echo -en "$DONE\nMaking complete dependency list"
623
624 tr -s '/' '/' < $tempfile | sort -u > $tempfile.new
625 mv -f $tempfile.new $tempfile
626 > $outfile.pre
627 progress=0
628 noof_lines=`cat $tempfile | wc -l`
629 LogFile "---------------------------------"
630 LogFile "List of dependencies: "
631 LogFile "---------------------------------"
632 for fname in `cat $tempfile` ; do
633 echo "$fname" | tee -a $LOGFILE >> $outfile.pre
634 LocateDeps $fname | tee -a $LOGFILE >> $outfile.pre
635 progress=$(($progress+1))
636 LogProgress $progress $noof_lines
637 done
638 if [ _"$MONDO_SHARE" != _"" ]; then
639 mkdir -p $bigdir/tmp
640 mkdir -p $bigdir/usr/bin
641 if [ -e "$MINDI_TMP/post-nuke.tgz" ] ; then
642 LogAll "\nINFO: Incorporating post-nuke tarball"
643 old_pwd=`pwd`
644 cd "$bigdir"
645 tar -zxf $MINDI_TMP/post-nuke.tgz 2>> $MINDI_TMP/$$.log || LogAll "ERROR: when untarring post-nuke tarball" $MINDI_TMP/$$.log
646 cd "$old_pwd"
647 fi
648 if cp -f $MINDI_TMP/mondo*restore $bigdir/usr/bin 2>> $LOGFILE ; then
649 LocateDeps $bigdir/usr/bin/mondo*restore >> $outfile.pre
650 else
651 LogIt "ERROR: Cannot find mondo*restore in mondo's tempdir, $MINDI_TMP"
652 LogIt " I bet you've got a spare copy of Mondo or Mindi floating around on your system."
653 LogIt " If Mindi was called by Mondo then send me a bug report."
654 LogIt " It not, type 'ps ax' to see which Mondo-related process is still running then kill it. :-)"
655 LogIt " Finally, run Mindi again."
656 Die "Odd."
657 fi
658 cp -f $MINDI_TMP/BOOTLOADER.* $bigdir 2>> $LOGFILE || LogIt "\nINFO: Mondo v1.2x defaults to LILO as the bootloader, BTW."
659 if [ -e "$MINDI_TMP/NETFS-SERVER-MOUNT" ] ; then
660 LogAll "\nINFO: Incorporating Network-related settings"
661 for r in NETFS-* ; do
662 cp -f $MINDI_TMP/$r $bigdir/tmp 2>> $LOGFILE || Die "Cannot copy $r - did you run out of disk space?"
663 LogFile "INFO: Copying $r to ramdisk"
664 done
665 fi
666 fi
667 tr ' ' '\n' < $outfile.pre | tr -s '/' '/' | grep -Fvx "" | sort -u | grep -Ev "/libX11|/libXext|/libXi|/libgtk|/libgdk" > $outfile
668 rm -f $tempfile $outfile.pre
669 [ "$res" -eq "0" ] && echo -e "\r\t\t\t\t\t\t\t\t$DONE" || echo "\nFailed."
670 return $res
671}
672
673
674GenerateListForFile() {
675 local files_found loc fname incoming i res
676 incoming="$1"
677 files_found=""
678 res=0
679
680 for fname in $incoming ; do
681 files_found="$files_found `LocateFile $fname`"
682 done
683
684 echo "$files_found" | tr ' ' '\n' | sort -u | tr '\n' ' '
685}
686
687
688# Returns all disk devices which are part of a raid array
689GetAllRaidMembers() {
690 $AWK "/^[[:space:]]*#/ {next} /^[[:space:]]*device/ if(\$2) {print \$2}" < /etc/raidtab
691}
692
693
694GetFileSizeList() {
695 local i
696 for i in `find $1 -type d -o -print` ; do
697 du -sk $i
698 done
699}
700
701
702# Check kernel filesystem capabilites for accessing initrd image
703# Could be ext2 FS (old mode) or initramfs (new mode)
704#
705# Interface definition:
706# param #1: absolute path to kernel image
707GetInitrdFilesystemToUse() {
708
709 # interface test: make sure we have one parameter
710 if [ $# -ne 1 ]; then
711 Die "GetInitrdFilesystemToUse(): Expected 1 parameter, got $#."
712 fi
713
714 # interface parameters
715 local lvKernelImage=$1
716
717 # local constants (filesystem magic strings)
718 local lcMagicCramfs="<3>cramfs: wrong magic"
719 local lcMagicExt2fs="EXT2-fs: blocksize too small for device."
720 local lcMagicExt3fs="<3>EXT3-fs: blocksize too small for journal device."
721 local lcMagicInitfs="<6>checking if image is initramfs...|[<]*6[>]*Unpacking initramfs...|<6>Trying to unpack rootfs image as initramfs"
722
723 # local variables
724 local lvOffset
725 local lvScanRes
726 local lvUseFilesystem
727
728 # say where we are.
729 LogFile "INFO: GetInitrdFilesystemToUse(): called with parameter: $lvKernelImage"
730
731 # verify that file exists
732 [ ! -f $lvKernelImage ] && Die "File $lvKernelImage not found. Terminating."
733
734 # Kernel may be gzip compressed - Case of RHEL5 - SLES11SP1
735 file $lvKernelImage 2>&1 | grep -q gzip
736 if [ $? -eq 0 ]; then
737 LogFile "INFO: Found a gzip compressed kernel $lvKernelImage"
738 lvScanRes=`gzip -cd $lvKernelImage | strings | grep -E "$lcMagicCramfs|$lcMagicExt2fs|$lcMagicExt3fs|$lcMagicInitfs" 2> /dev/null`
739 else
740 LogFile "INFO: Found a non gzip compressed kernel $lvKernelImage"
741 # kernel is x86 boot sector in RHEL3/4 with embedded gzip content
742 # get offet of gzip magic "1f8b0800" in file (for these older kernels)
743 lvOffset=`od -vA n -t x1 $lvKernelImage | tr -d '[:space:]' | awk '{ print match($0, "1f8b0800")}' 2> /dev/null`
744 if [ $lvOffset -eq 0 ]; then
745 LogFile "INFO: gzip magic not found in file $lvKernelImage. Supposing initramfs."
746 lvScanRes=$lcMagicInitfs
747 else
748 lvOffset=`expr $lvOffset / 2`
749 LogFile "INFO: GetInitrdFilesystemToUse(): gzip magic found at lvOffset $lvOffset."
750 # scan again kernel image
751 lvScanRes=`dd ibs=1 skip=$lvOffset if=$lvKernelImage obs=1M 2>/dev/null | gunzip -c 2> /dev/null | strings | grep -E "$lcMagicCramfs|$lcMagicExt2fs|$lcMagicExt3fs|$lcMagicInitfs" 2> /dev/null`
752 fi
753 fi
754
755 # determine which filesystem to use for initrd image: ext2|3fs, gzip'ed cpio (initramfs) or cramfs
756 if [ `echo $lvScanRes | grep -Ec "$lcMagicExt2fs"` -eq 1 ]; then
757 lvUseFilesystem="ext2fs"
758 elif [ `echo $lvScanRes | grep -Ec "$lcMagicExt3fs"` -eq 1 ]; then
759 lvUseFilesystem="ext3fs"
760 elif [ `echo $lvScanRes | grep -Ec "$lcMagicInitfs"` -eq 1 ]; then
761 lvUseFilesystem="initramfs"
762 elif [ `echo $lvScanRes | grep -Ec "$lcMagicCramfs"` -eq 1 ]; then
763 lvUseFilesystem="cramfs"
764 else
765 # In that case, we are most probably after 2.6.30 and use the supported initramfs
766 LogFile "WARNING: No automatic detection found previously. Supposing initramfs."
767 LogFile "WARNING: Report on the MondoRescue mailing-list with your log files and the result of"
768 LogFile "WARNING: dd ibs=1 skip=$lvOffset if=$lvKernelImage obs=1M 2>/dev/null | gunzip -c 2> /dev/null | strings | grep initramfs"
769 lvUseFilesystem="initramfs"
770 fi
771
772 # say what we are using
773 LogFile "INFO: GetInitrdFilesystemToUse(): Filesytem to use for initial ram disk is $lvUseFilesystem."
774
775 # return file system to use
776 echo "$lvUseFilesystem"
777
778}
779
780# Searches members of raid device
781# $1: raid device (/dev/md...)
782GetRaidDevMembers() {
783 if [ ! -f /etc/raidtab ]; then
784 return
785 fi
786 $AWK "/^[[:space:]]*#/ {next} /^[[:space:]]*raiddev/ {if(dev) exit; if(\$2 == \"$1\") dev=\$2} /^[[:space:]]*device/ {if(dev) {print \$2}}" < /etc/raidtab
787}
788
789
790ListAllPartitions() {
791 local res currline partition all_partitions ap_orig remaining i j
792
793 grep -Evx " *#.*| *none.*" $MY_FSTAB | $AWK '/^\/dev\/[imhs]d||^LABEL=\/|^UUID=/ && !/\/fdd|\/cdr|\/zip|\/floppy/ {print $1}'
794 [ -e "/etc/raidtab" ] && $AWK '/^ *device/ {print $2}' /etc/raidtab
795 if [ -e "/vmfs/volumes" ]; then
796 # For VMWare ESX 3 get the device names of these volumes
797 vdf -P | grep -E '/vmfs/volumes' | $AWK '{print $1}'
798 fi
799 return
800}
801
802
803ListImagesForUser() {
804 local path fname
805 path=$MINDI_CACHE
806 echo -en "In the directory '$path' you will find the images:-\n"
807 for fname in `ls $path | grep -F mindi-` ; do
808 printf "%19s " $fname
809 done
810 echo " "
811}
812
813
814ListKernelModulePaths() {
815 local module_list module fname r kern
816 module_list="$MODULES"
817 # Remove unwanted modules from list
818 for i in $DENY_MODS; do
819 module_list=`echo ${module_list} | tr ' ' '\n' | grep -Ev "^${i}$" | tr '\n' ' '`
820 EXTRA_MODS=`echo ${EXTRA_MODS} | tr ' ' '\n' | grep -Ev "^${i}$" | tr '\n' ' '`
821 done
822###
823### Sq-Modification ... Use kernelname for module search path if specified
824###
825 if [ "${kernelname}" != "" ]
826 then
827 kern=${kernelname}
828 else
829 kern="$KERVERRUN"
830 fi
831 export KERVER=$kern
832###
833### Sq-Mod End
834###
835 # Get rid of duplicates, so that if a live kernel module also appears
836 # in $EXTRA_MODS that it won't get reported as "live module file not found" twice.
837 for module in `echo $module_list $EXTRA_MODS | tr ' ' '\n' | sort -u` ; do
838 r=`find /lib/modules/$kern -type f | grep "/${module}\..*o" | tail -n1`
839 if [ -z "$r" ]; then
840 if [ "`echo "$MODULES" | grep -w $module`" ]; then
841 r="[live module file not found]"
842 else
843 r="[extra module file not found]"
844 fi
845 else
846 [ -f "$r" ] && echo "$r"
847 fi
848 LogFile "INFO: module $module --> $r"
849 done
850 find /lib/modules/$kern/modules.* -type f 2> /dev/null
851}
852
853#
854# Critical function which computes all dependencies (dyn. lib.)
855# for a list of binaries
856#
857LocateDeps() {
858 local incoming fname deps
859 incoming="$*"
860 deps=""
861
862 for fname in $incoming ; do
863 if [ ! -e "$fname" ] ; then
864 LogFile "WARNING: $fname does not exist; cannot be LDD'd."
865 if echo $fname | grep lvm &> /dev/null ; then
866 LogFile " This warning only affects you if you are using LVM."
867 if echo "$MODULES" | grep lvm &> /dev/null ; then
868 LogFile " I think you are, so please take heed!"
869 else
870 LogFile " I don't think you are, so don't worry about it."
871 fi
872 fi
873 else
874 deps="$deps $fname"
875 fi
876 done
877 mr-read-all-link `mr-process-ldd $deps | sort -u` | sort -u
878}
879
880
881LocateFile() {
882 local i j path fname_to_find location output resolved tmp stub cache_id loclist
883 fname_to_find="$1"
884 # It's an absolute path
885 j=`echo "$fname_to_find" | cut -c1`
886 if [ _"$j" = _"/" ]; then
887 dn=`dirname $fname_to_find`
888 # We suppose that the link is already included, just add the new file
889 if [ -h "$dn" ]; then
890 newdn=`readlink -f $dn`
891 bn=`basename $fname_to_find`
892 output="$newdn/$bn"
893 else
894 output="$fname_to_find"
895 fi
896 if [ -h "$output" ] ; then
897 output="`mr-read-all-link $output` $output"
898 fi
899 echo "$output"
900 return 0
901 fi
902 # It's not an absolute path
903 output=""
904 for path in /etc /usr /usr/bin /usr/sbin /bin /usr/X11R6/bin /sbin /usr/local/bin /usr/local/sbin `find /usr/lib /lib /usr/local/lib /usr/X11R6/lib /usr/lib64 /lib64 /usr/local/lib64 /usr/X11R6/lib64 -type d -maxdepth 1 2> /dev/null` ; do
905 #for path in /etc /usr /usr/bin /usr/sbin /bin /usr/X11R6/bin /sbin /usr/local/bin /usr/local/sbin /usr/lib /usr/lib64 /usr/lib64/* /lib /lib64 /lib64/* /usr/local/lib /usr/local/lib64 /usr/local/lib64/* /usr/X11R6/lib /usr/X11R6/lib64 /usr/X11R6/lib64/* ; do
906 [ -h "$path" ] && continue
907 [ ! -e "$path/$fname_to_find" ] && continue
908 output="$path/$fname_to_find $output"
909 if [ -h "$path/$fname_to_find" ] ; then
910 output="`mr-read-all-link $path/$fname_to_find` $output"
911 fi
912 done
913 if [ "$output" = "" ] ; then
914 return 1
915 fi
916 echo "$output"
917 return 0
918}
919
920LogProgress() {
921 local i progress modres noof_lines title
922
923 progress=$1
924 noof_lines=$2
925 title=$3
926
927 i=$(($progress*100))
928 if [ $noof_lines -ne 0 ]; then
929 i=$(($i/$noof_lines))
930 else
931 i=0
932 fi
933
934 if [ _"$MONDO_SHARE" != _"" ]; then
935 echo "$title $i%"
936 else
937 echo -en "\r\t\t\t\t\t\t\t\t"
938 echo -en "$i"
939 echo -en "%"
940 modres=$(($progress%4))
941 [ "$modres" -eq "0" ] && echo -en "\t/"
942 [ "$modres" -eq "1" ] && echo -en "\t-"
943 [ "$modres" -eq "2" ] && echo -en "\t\\"
944 [ "$modres" -eq "3" ] && echo -en "\t|"
945 fi
946}
947
948# Called by TurnTgzIntoRdz, to make /tmp/$MRCFG
949MakeMondoConfigFile() {
950 local outfile use_lzo use_comp use_star
951 outfile=$1
952 > $outfile
953 [ "$TAPESIZE" ] && echo "media-size $TAPESIZE" >> $outfile
954 [ "$TAPEDEV" ] && echo "media-dev $TAPEDEV" >> $outfile
955 [ "$USBDEVICE" ] && echo "usb-dev $USBDEVICE" >> $outfile
956 [ "$FILES_IN_FILELIST" ] && echo "files-in-filelist $FILES_IN_FILELIST" >> $outfile
957 [ "$LAST_FILELIST_NUMBER" ] && echo "last-filelist-number $LAST_FILELIST_NUMBER" >> $outfile
958 [ "$INTERNAL_TAPE_BLOCK_SIZE" ] && echo "internal-tape-block-size $INTERNAL_TAPE_BLOCK_SIZE" >> $outfile
959 use_lzo=$USE_LZO; [ "$use_lzo" = "" ] && use_lzo="no"
960 use_gzip=$USE_GZIP; [ "$use_gzip" = "" ] && use_gzip="no"
961 use_lzma=$USE_LZMA; [ "$use_lzma" = "" ] && use_lzma="no"
962 use_comp=$USE_COMP; [ "$use_comp" = "" ] && use_comp="yes"
963 use_star=$USE_STAR; [ "$use_star" = "" ] && use_star="no"
964 echo "use-lzo $use_lzo" >> $outfile
965 echo "use-gzip $use_gzip" >> $outfile
966 echo "use-star $use_star" >> $outfile
967 echo "use-lzma $use_lzma" >> $outfile
968 echo "use-comp $use_comp" >> $outfile
969 echo "datestamp `date`" >> $outfile
970 [ "$ESTIMATED_TOTAL_NOOF_SLICES" ] && echo "total-slices $ESTIMATED_TOTAL_NOOF_SLICES" >> $outfile
971 AddFileToCfgIfExists $MINDI_TMP/ISO-DEV iso-dev $outfile
972 AddFileToCfgIfExists $MINDI_TMP/ISO-MNT iso-mnt $outfile
973 AddFileToCfgIfExists $MINDI_TMP/ISO-PREFIX iso-prefix $outfile
974 AddFileToCfgIfExists $MINDI_TMP/ISO-DIR iso-dir $outfile
975 AddFileToCfgIfExists $MINDI_TMP/BOOTLOADER.DEVICE bootloader.device $outfile
976 AddFileToCfgIfExists $MINDI_TMP/BOOTLOADER.NAME bootloader.name $outfile
977 AddFileToCfgIfExists $MINDI_TMP/BOOTLOADER.VER bootloader.ver $outfile
978 AddFileToCfgIfExists $MINDI_TMP/TAPEDEV-HAS-DATA-DISKS tapedev-has-data-disks $outfile
979 AddFileToCfgIfExists $MINDI_TMP/BACKUP-MEDIA-TYPE backup-media-type $outfile
980 AddFileToCfgIfExists $MINDI_TMP/DIFFERENTIAL differential $outfile
981 AddFileToCfgIfExists $MINDI_TMP/ACL acl $outfile
982 AddFileToCfgIfExists $MINDI_TMP/XATTR xattr $outfile
983 AddFileToCfgIfExists $MINDI_TMP/OBDR obdr $outfile
984
985 # Deal with network configuration in a portable way
986 if [ -f $MINDI_TMP/NETFS-SERVER-MOUNT ]; then
987 mr-net-get-config `cat $MINDI_TMP/NETFS-SERVER-MOUNT` >> $outfile
988 fi
989}
990
991# Get PV's for an LV
992GetPVsForLV() {
993 if [ -n "$1" ]; then
994 vg=`$LVMCMD lvdisplay $1 2>/dev/null |awk '/VG Name/{print $NF;exit}'`
995 if [ -z "$vg" ]; then
996 return
997 fi
998 $LVMCMD vgdisplay -v $vg 2>/dev/null | awk '/PV Name/{print $NF}'
999 fi
1000}
1001
1002
1003MakeMountlist() {
1004 local mountlist all_partitions current_partition \
1005partition_size partition_format outstring partition_number \
1006partition_mountpt c_p lwm_info psz lvm_dev unofficial_outstring \
1007absolute_partition old_partition_fmt current_lvolume uname skip
1008
1009 LogFile "------------------------------------"
1010 LogFile "Your raw fstab file looks like this:"
1011 LogFile "------------------------------------"
1012 cat $MY_FSTAB >> $LOGFILE
1013 LogAll "-----------------------------------"
1014 LogAll "Your mountlist will look like this:"
1015 LogAll "-----------------------------------"
1016
1017# mountlist(OUT)
1018 mountlist=$1
1019
1020# NB: partition = device
1021# NB: mountpt = where the device is mounted
1022
1023 [ -e "$MY_FSTAB" ] || Die "Cannot find your fstab file ($MY_FSTAB)"
1024
1025 [ "$mountlist" != "" ] && rm -Rf $mountlist
1026 > $mountlist
1027 all_partitions=""
1028
1029 if [ $LVM != "false" ]; then
1030 LogAll "INFO: Analyzing LVM..."
1031 $MINDI_LIB/analyze-my-lvm > $MINDI_TMP/lvm.res
1032 if [ $? -ne 0 ]; then
1033 LVM="false"
1034 fi
1035 # Excluded LVs and GVs are not reported here
1036 all_partitions=`cat $MINDI_TMP/lvm.res | grep -F ">>>" | cut -d' ' -f2-`
1037 fi
1038 all_partitions="$all_partitions `ListAllPartitions 2> /dev/null`"
1039 for i in $IMAGE_DEVS ; do
1040 mount | grep -F "$i " > /dev/null 2> /dev/null && Die "Sorry, $i is already mounted! CANNOT DO IMAGEDEV on it if it's mounted."
1041 done
1042 [ "$IMAGE_DEVS" != "" ] && all_partitions="`echo "$all_partitions $IMAGE_DEVS" | tr ' ' '\n' | sort -u | tr '\n ' ' '`"
1043 printf "%-15s %-15s %-15s %-13s %-15s\n" DEVICE MOUNTPOINT FORMAT "SIZE MB" LABEL/UUID | tee -a $LOGFILE
1044 printf "%-15s %-15s %-15s %-13s %-15s\n" ------ ---------- ------ ------- ---------- | tee -a $LOGFILE
1045 useless_dev="/dev/floppy /dev/fd0h1440 /dev/fd0H1440 /dev/cdrom /dev/cdrom/cdrom /dev/cdrom/cdrom1 /dev/cdrom/cdrom2 /dev/cdrom0 /dev/cdrom1 /dev/cdrom2 /dev/cdrom3 /dev/cdrw /dev/scd /dev/ram :/ /dev/sr0 /dev/sr1 /dev/cdrom1 tmpfs devpts sysfs proc debugfs"
1046 for c_p in $all_partitions ; do
1047 # Skip fd/cd devices, network FS, cifs
1048 [ "`echo "$useless_dev" | grep -F "$c_p"`" != "" ] || [ "`echo "$c_p" | grep ":"`" != "" ] || [ "`echo "$c_p" | grep -E "^//"`" != "" ]&& continue
1049 [ "`echo "$c_p" | grep -x "/dev/cdroms.*"`" ] && continue
1050 if [ -h "$c_p" ] && [ "`echo "$c_p" | grep -F "/dev/hd"`" = "" ] && [ "`echo "$c_p" | grep -F "/dev/sd"`" = "" ] && [ "`echo "$c_p" | grep -F "/dev/md"`" = "" ] ; then
1051 current_partition=`readlink -f $c_p`
1052 if [ "`echo "$current_partition" | grep -F "/dev/mapper"`" != "" ]; then
1053 current_partition="$c_p"
1054 elif [ "`echo $current_partition | grep -E '^/dev/dm-'`" ]; then
1055 # For SLES 11 type of distro, do not use dm devices as they are unable to be handled by lvm commands
1056 current_partition=`$MINDI_LIB/analyze-my-lvm --givevglvofdm $current_partition`
1057 fi
1058 [ "`echo "$useless_dev" | grep -F "$current_partition"`" ] && continue
1059 else
1060 current_partition="$c_p"
1061 fi
1062 [ "$c_p" = "none" ] && continue
1063 redhat_label=""
1064 label=""
1065 uuid=""
1066 absolute_partition=`readlink -f $c_p`
1067 partition_mountpt=`tr -s '\t' ' ' < $MY_FSTAB | grep -w "$current_partition" | grep -vx " *#.*" | $AWK '{print $2}' | head -n1`
1068
1069 # set default in case we dont't find it
1070 str_to_find_fmt_with=$current_partition
1071
1072 # This part tries to retrieve the correct device from a LABEL line in /etc/fstab
1073 # current_partition contains only first column of /etc/fstab
1074 if [ "`echo "$current_partition" | grep -i "LABEL="`" != "" ]; then
1075 redhat_label=`echo "$current_partition" | cut -d'=' -f2`
1076 actual_dev=""
1077
1078 # 1st try, findfs - the RHEL way of finding labels and their partitions
1079 if [ -x "/sbin/findfs" ]; then
1080 actual_dev=`/sbin/findfs LABEL="${redhat_label}" 2> /dev/null`
1081 fi
1082
1083 # 2nd try : blkid, the good way for all LABEL except swap
1084 if [ "x$actual_dev" = "x" -a -x "/sbin/blkid" ]; then
1085 actual_dev=`/sbin/blkid | grep "$redhat_label" | grep LABEL= | cut -d':' -f1`
1086 # For LVM FS it will give a /dev/dm-# which should then be converted
1087 if [ $LVM = "v2" ] && [ "`echo $actual_dev | grep '/dev/dm'`" ]; then
1088 major=`/bin/ls -l $actual_dev | $AWK '{print $5}'`
1089 minor=`/bin/ls -l $actual_dev | $AWK '{print $6}'`
1090 for dev in `ls /dev/mapper/*`; do
1091 major1=`/bin/ls -l $dev | $AWK '{print $5}'`
1092 minor1=`/bin/ls -l $dev | $AWK '{print $6}'`
1093 if [ $major1 = $major ] && [ $minor1 = $minor ]; then
1094 actual_dev=`/bin/ls -l $dev | $AWK '{print $10}'`
1095 break
1096 fi
1097 done
1098 fi
1099 fi
1100
1101 # 3rd try, which works on a standard partition (ext2/3), but not on swap
1102 # For LVM gives a /dev/mapper entry
1103 if [ "x$actual_dev" = "x" ]; then
1104 actual_dev=`/bin/mount -l | grep "\[$redhat_label\]" | cut -d' ' -f1`
1105 fi
1106
1107 # 4th try, with vol_id
1108 # SWAP only
1109 if [ "x$actual_dev" = "x" -a -x "/sbin/vol_id" ]; then
1110 list_swaps=`cat /proc/swaps | grep "/dev/" | $AWK '{ print $1 }' `
1111 for dev_swap in $list_swaps ; do
1112 dev_exists=`/sbin/vol_id $dev_swap | grep "$redhat_label"`
1113 if [ "x$dev_exists" != "x" ]; then
1114 actual_dev=$dev_swap
1115 break;
1116 fi
1117 done
1118 fi
1119
1120 # 5th try : pre-formated LABEL. Format is : LABEL=SWAP-mydevice or SW-mydevice. e.g. : LABEL=SWAP-hda5
1121 # LABEL=SW-cciss/c0d0p3 (RDP)
1122 # or could be a string that isn't a complete device name (eg. LABEL =SWAP-cciss/c0d0p)
1123 # SWAP only
1124 if [ "x$actual_dev" = "x" -a _"`echo $current_partition | grep -iE 'LABEL=SWAP|LABEL=SW-'`" != _"" ]; then
1125 skip=""
1126 uname=$KERVERRUN
1127 [ "`echo $uname | grep "2.4.[0-9]"`" != "" ] && skip=16
1128 # 2.6.12 needs 16 (FC3)
1129 [ "`echo $uname | grep "2.6.[0-1]"`" != "" ] && skip=16
1130 # 2.6.19 and upper needs 1052
1131 [ "`echo $uname | grep "2.6.19"`" != "" ] && skip=1052
1132 [ "`echo $uname | grep "2.6.[2-9]"`" != "" ] && skip=1052
1133 [ "`echo $uname | grep "3.[0-9]*.[0-9]*"`" != "" ] && skip=1052
1134 if [ $skip = "" ]; then
1135 Die "Your kernel is too old. I don't know how to support labelled swap spaces with it"
1136 fi
1137 for try_dev in `tail +2 /proc/swaps | cut -d' ' -f1`
1138 do
1139 # Location of the swap label for kernel 2.6
1140 try_dev_label=`dd bs=1 count=16 skip=$skip if=$try_dev 2> /dev/null`
1141 if [ "x$try_dev_label" = "x$redhat_label" ]; then
1142 actual_dev=$try_dev
1143 fi
1144 done
1145 fi
1146
1147 # Check if one of all those tries has known success
1148 if [ "x$actual_dev" != "x" ]; then
1149 current_partition=$actual_dev
1150 else
1151 Die "Your system uses a LABEL partition ($current_partition), but you lack the tool to support it.\nPlease replace labels with their correct devices in $MY_FSTAB or install findfs|blkid|vol_id"
1152 fi
1153 # This part tries to retrieve the correct device from a UUID line in /etc/fstab
1154 # current_partition contains only first column of /etc/fstab
1155 elif [ "`echo "$current_partition" | grep -i "UUID="`" != "" ]; then
1156 uuid=`echo "$current_partition" | cut -d'=' -f2`
1157 actual_dev=""
1158
1159 # 1st try, findfs - the RHEL way of finding labels and their partitions
1160 if [ -x "/sbin/findfs" ]; then
1161 actual_dev=`/sbin/findfs UUID=${uuid} 2> /dev/null`
1162 fi
1163
1164 # 2nd try : blkid, the good way for all UUID except swap
1165 if [ "x$actual_dev" = "x" -a -x "/sbin/blkid" ]; then
1166 actual_dev=`/sbin/blkid | grep "$uuid" | grep UUID= | cut -d':' -f1`
1167 # For LVM FS it will give a /dev/dm-# which should then be converted
1168 if [ $LVM = "v2" ] && [ "`echo $actual_dev | grep '/dev/dm'`" ]; then
1169 major=`/bin/ls -l $actual_dev | $AWK '{print $5}'`
1170 minor=`/bin/ls -l $actual_dev | $AWK '{print $6}'`
1171 for dev in `ls /dev/mapper/*`; do
1172 major1=`/bin/ls -l $dev | $AWK '{print $5}'`
1173 minor1=`/bin/ls -l $dev | $AWK '{print $6}'`
1174 if [ $major1 = $major ] && [ $minor1 = $minor ]; then
1175 actual_dev=`/bin/ls -l $dev | $AWK '{print $10}'`
1176 break
1177 fi
1178 done
1179 fi
1180 fi
1181
1182 # 3th try, with vol_id
1183 if [ "x$actual_dev" = "x" -a -x "/sbin/vol_id" ]; then
1184 list_dev=`mount | grep -E '^/' | $AWK '{ print $1 }' `
1185 for dev in $list_dev ; do
1186 dev_exists=`/sbin/vol_id $dev | grep "$uuid"`
1187 if [ "x$dev_exists" != "x" ]; then
1188 actual_dev=$dev
1189 break;
1190 fi
1191 done
1192 fi
1193
1194 # 4th try, with dumpuuid (VMWare only ?) for swap
1195 if [ "x$actual_dev" = "x" -a -x "/sbin/dumpuuid" ]; then
1196 list_dev=`cat /proc/swaps | grep -E '^/' | $AWK '{ print $1 }' `
1197 for dev in $list_dev ; do
1198 dev_exists=`/sbin/dumpuuid $dev | grep "$uuid"`
1199 if [ "x$dev_exists" != "x" ]; then
1200 actual_dev=$dev
1201 break;
1202 fi
1203 done
1204 fi
1205
1206 # Check if one of all those tries has known success
1207 if [ "x$actual_dev" != "x" ]; then
1208 current_partition=$actual_dev
1209 else
1210 Die "Your system uses a UUID partition ($current_partition),\nbut you lack the tool to support it.\nPlease replace labels with their correct devices in $MY_FSTAB or\ninstall findfs|blkid|vol_id or\nrelabel the partition with the correct UUID if it's a swap partition."
1211 fi
1212 else
1213 # Needs to handle the recent OpenSUSE fancy way of dealing with fstab :-(
1214 # they use symlinks in fstab unrelated to what is shown in mount !
1215 if [ _"$partition_mountpt" = _"" ]; then
1216 # set default in case we dont't find it
1217 for tmpp in `tr -s '\t' ' ' < $MY_FSTAB | grep -Ev "^#" | $AWK '{print $1}'`; do
1218 if [ _"`readlink -f $tmpp`" = _"`readlink -f $current_partition`" ]; then
1219 str_to_find_fmt_with=$tmpp
1220 partition_mountpt=`tr -s '\t' ' ' < $MY_FSTAB | grep -w "$tmpp" | grep -vx " *#.*" | $AWK '{print $2}' | head -n1`
1221 break;
1222 fi
1223 done
1224 fi
1225 fi
1226
1227 # Detects noauto partitions not mounted and exclude them
1228 partition_option=`tr -s '\t' ' ' < $MY_FSTAB | grep -w "$str_to_find_fmt_with" | grep -vx " *#.*" | $AWK '{print $4}' | head -n1`
1229 if [ "`echo "$partition_option" | grep -i noauto`" != "" ] && [ "`mount | grep -w "$partition_mountpt"`" = "" ] ; then
1230 LogFile "INFO: Excluding $current_partition from mountlist (due to noauto option in fstab)"
1231 continue
1232 fi
1233 # Detects bind partitions and exclude them
1234 if [ "`echo "$partition_option" | grep -iw bind`" != "" ]; then
1235 LogFile "INFO: Excluding $current_partition from mountlist (due to bind option in fstab)"
1236 continue
1237 fi
1238
1239 # Look for devices which have to be excluded
1240 skip=0
1241 if [ "$MINDI_EXCLUDE_DEVS" ] ; then
1242 l=""
1243 list_of_devices="`mr-read-all-link $current_partition`"
1244 for d in $list_of_devices; do
1245 l="$l `$MINDI_LIB/analyze-my-lvm --givemapperofdm $d`"
1246 done
1247
1248 # Remove PVs from LVs excluded
1249 l="$l `GetPVsForLV $current_partition`"
1250
1251 # We want a single unique list
1252 list_of_devices="`echo $l | sort -u`"
1253
1254 for d in `echo $MINDI_EXCLUDE_DEVS | sed 's/|/ /g'`; do
1255 if [ "`echo " $list_of_devices " | grep " $d"`" != "" ]; then
1256 LogFile "INFO: Excluding $current_partition from mountlist (due to excluded device $d)"
1257 skip=1
1258 continue
1259 fi
1260 done
1261 fi
1262 if [ $skip -eq 1 ]; then
1263 continue
1264 fi
1265
1266 partition_format=`$AWK '$1 == "'"$str_to_find_fmt_with"'" {print $3}' $MY_FSTAB`
1267 # Detects iso9660 ISO images and exclude them
1268 if [ "`echo "$partition_format" | grep -iw iso9660`" != "" ]; then
1269 LogFile "INFO: Excluding $current_partition from mountlist (due to iso9660 format in fstab)"
1270 continue
1271 fi
1272 # Some distributions such as Debian do not put /dev/<VG>/<LV> in fstab
1273 # for LVM partitions but use /dev/mapper/<VG>-<LV> instead. Fortunately,
1274 # the former is then a link to the latter, so we test whether
1275 # $current_partition is actually such a link or not and set
1276 # $current_lvolume accordingly. On Debian you may find more than one answer
1277 # so we remove the one corresponding to /dev/.static
1278 # On RedHat even if the device name is different (/dev/mapper/<VG><LV>), the
1279 # principle is the same and we need to find the link to it as well.
1280 # Note that $current_lvolume may well be an
1281 # ordinary device. It is just to make sure that we feed the right value
1282 # into any of the LVM tools if possible.
1283
1284 current_lvolume="$current_partition"
1285 if [ $LVM = "v2" ] && [ "`echo $current_partition | grep -E '^/dev/mapper/'`" ]; then
1286 # .static dir are a Debian specificity
1287 current_lvolume="`find /dev -lname "$current_partition" | grep -Ev '^/dev/\.static/'`"
1288 echo $current_lvolume | grep -q ' '
1289 if [ $? -eq 0 ]; then
1290 LogFile "WARNING: Multiple Logical Volumes found. Report to dev team"
1291 fi
1292 # if it's not found, it may well be a real device such as a multipath one
1293 # /dev/mapper/mpath... Thus we revert the situation so that next test succeed
1294 if [ _"$current_lvolume" = _"" ]; then
1295 current_lvolume="$current_partition"
1296 fi
1297 fi
1298 #
1299 # End of LVM device style variation code (other than $current_lvolume).
1300
1301 if [ $LVM != "false" ] && [ "`$LVMCMD lvdisplay $current_lvolume 2> /dev/null`" ]; then
1302 # Size computed via LVM not directly
1303 partition_size="lvm"
1304 else
1305 [ "`echo "$current_partition" | grep "[0-9]"`" = "" ] && continue
1306 [ "`echo "$current_partition" | grep -c "^/"`" -ne "1" ] && continue
1307 if [ "$partition_format" = "swap" ] || [ "$partition_mountpt" = "swap" ] ; then
1308 # Skip swap files
1309 [ "`echo "$current_partition" | grep -E "^/dev"`" = "" ] && continue
1310 partition_size=`grep -Fv "Priority" /proc/swaps | tr -s '\t' ' ' | grep -F "$current_partition " | $AWK '{print $3}'`
1311 [ "$partition_mountpt" != "swap" ] && partition_mountpt="swap"
1312 [ "$partition_format" != "swap" ] && partition_format="swap"
1313 if [ "$partition_size" = "" ] ; then
1314 totalsize=0
1315 items=0
1316 for i in `tr -s ' ' '\t' < /proc/swaps | grep -Fv "Filename" | cut -f3` ; do
1317 totalsize=$(($totalsize+$i))
1318 items=$(($items+1))
1319 done
1320 [ "$items" -gt "0" ] && partition_size=$(($totalsize/$items)) || partition_size=0
1321 [ "$partition_size" -lt "125000" ] && partition_size=125000
1322 LogFile "INFO: I'm guessing $c_p is $(($partition_size/1024))MB"
1323 fi
1324 else
1325 partition_size=`SizeOfPartition $current_partition`
1326 fi
1327 fi
1328 [ "$partition_mountpt" = "swap" ] && partition_format="swap"
1329 [ "$partition_format" = "swap" ] && partition_mountpt="swap"
1330 if [ "$partition_mountpt" = "" ] ; then
1331 if [ "`$LVMCMD pvdisplay $current_lvolume 2> /dev/null`" != "" ] ; then
1332 if [ "`grep -F device /etc/raidtab 2> /dev/null | grep -w $current_partition`" ] ; then
1333 partition_mountpt="raid"
1334 partition_format="raid"
1335 else
1336 partition_mountpt="lvm"
1337 partition_format="lvm"
1338 fi
1339 fi
1340 fi
1341 psz=$partition_size
1342 LogFile "INFO: Examining $current_partition (mount=$partition_mountpt fmt=$partition_format psz=$psz)"
1343 [ "$psz" != "lvm" ] && psz=$(($psz/1024))
1344 if [ "`echo " $IMAGE_DEVS " | grep -F " $current_partition "`" != "" ] ; then
1345 partition_mountpt="image"
1346 old_partition_fmt=$partition_format
1347 partition_format="`$FDISK -l 2>> $LOGFILE | tr '*' ' ' | tr '+' ' ' | tr -s ' ' '\t' | grep -w "$absolute_partition" | cut -f5`"
1348 partition_size=$(($partition_size+1)); # just in case
1349 if [ "$partition_format" = "Linux" ] ; then
1350 LogFile "WARNING: Are you imaging a mounted swap partition? Silly..."
1351 LogFile "WARNING: Reverting format from $old_partition_fmt to $partition_format"
1352 partition_format=$old_partition_fmt
1353 fi
1354 fi
1355
1356 if [ ! "$partition_mountpt" ] ; then
1357 LogFile "------- $FDISK -l $qq log ------------"
1358 for qq in "" `find /dev/ida/c*d* ! -name '*p*' 2> /dev/null`; do
1359 partition_format=`$FDISK -l $qq 2>> $LOGFILE | grep -w "$c_p" | sed 's/12/|/' | tr -s '\t' ' ' | cut -d'|' -f2 | cut -d' ' -f2-9`
1360 [ "$partition_format" ] && break
1361 done
1362 LogFile "------- $FDISK log end ------------"
1363 if [ "$partition_format" = "Compaq diagnostics" ] ; then
1364 partition_format="compaq"
1365 elif [ ! "`grep -F device /etc/raidtab 2> /dev/null | grep -w $current_partition`" ] ; then
1366 LogAll "WARNING: Unable to find mountpoint of $current_partition - ignoring"
1367 continue
1368 fi
1369 fi
1370 if [ "$redhat_label" ]; then
1371 label="$redhat_label"
1372 elif [ "$uuid" ]; then
1373 label="$uuid"
1374 fi
1375 partition_format="`echo "$partition_format" | cut -d',' -f1`"; # in case user has ext3,ext2 or something dumb like that
1376 [ "$partition_format" = "auto" ] && partition_format="`mount | grep -w $current_partition | $AWK '{print$5;}'`"; # in case user uses 'auto' (dumb!)
1377 unofficial_outstring=`printf "%-15s %-15s %-15s %7s %-15s\n" $current_partition $partition_mountpt $partition_format $psz "$label"`
1378 if [ "$current_partition" = "" ] ; then
1379 LogFile "WARNING: Unknown partition (outstring = $unofficial_outstring)"
1380 elif [ "$partition_mountpt" = "" ] && [ -f "/etc/raidtab" ] ; then
1381 if [ "`grep -F device /etc/raidtab 2>/dev/null | grep -F $current_partition`" ] ; then
1382 partition_mountpt=raid
1383 partition_format=raid
1384 printf "%-15s %-15s %-15s %7s %15s\n" $current_partition $partition_mountpt $partition_format $psz "$label" | tee -a $LOGFILE
1385 printf "%s %s %s %s %s %s\n" $current_partition $partition_mountpt $partition_format $partition_size "$label" >> $mountlist
1386 else
1387 LogFile "WARNING: Unknown mountpoint (outstring = $unofficial_outstring)"
1388 fi
1389 elif [ "$partition_format" = "" ] ; then
1390 LogFile "WARNING: Unknown format (outstring = $unofficial_outstring)"
1391 elif [ "$partition_size" = "" ] ; then
1392 LogFile "WARNING: Unknown partition size (outstring = $unofficial_outstring)"
1393 elif [ "$partition_mountpt" = "/proc" ] || [ "$partition_mountpt" = "/dev/pts" ] ; then
1394 continue
1395 else
1396 if [ "$partition_format" = "dos" ] || [ "$partition_format" = "msdos" ] ; then
1397 LogFile "WARNING: vfat should be used instead of dos/msdos as a partition format"
1398 partition_format="vfat"
1399 fi
1400 printf "%-15s %-15s %-15s %7s %-15s\n" $current_partition $partition_mountpt $partition_format $psz "$label" | tee -a $LOGFILE
1401 printf "%s %s %s %s %s\n" $current_partition $partition_mountpt $partition_format $partition_size "$label" >> $mountlist
1402 fi
1403 done
1404 LogAll "-----------------------------------"
1405}
1406
1407CheckMountlist() {
1408 local file=$1
1409 # Coherency verification
1410 ML01=`cat $file | wc -l`
1411 ML02=`grep -vE ' lvm | raid | swap ' $file | wc -l`
1412 ML1=`$AWK '{print $1}' $file | sort -u | wc -l`
1413 ML2=`grep -vE ' lvm | raid | swap ' $file | $AWK '{print $2}' | sort -u | wc -l`
1414 if [ "$ML01" -ne "$ML1" ]; then
1415 LogFile "--------------------------------------------"
1416 LogAll "WARNING: Duplicate device entry in mountlist"
1417 LogFile "--------------------------------------------"
1418 fi
1419 if [ "$ML02" -ne "$ML2" ]; then
1420 LogFile "--------------------------------------------"
1421 LogAll "WARNING: Duplicate mountpoint entry in mountlist"
1422 LogFile "------------------------------------------------"
1423 fi
1424}
1425
1426OfferToMakeBootableISO() {
1427 local i old_pwd
1428 if [ -z "$ISO_CMD" ]; then
1429 LogAll "ERROR: Neither mkisofs nor genisoimage found, unable to make CD image"
1430 return
1431 fi
1432 if [ "$PROMPT_MAKE_CD_IMAGE" = "yes" ] && [ _"$MONDO_SHARE" = _"" ]; then
1433 echo -en "Shall I make a bootable CD image? (y/[n]) "
1434 read i
1435 [ "$i" != "y" ] && [ "$i" != "Y" ] && return 0
1436 fi
1437 rm -Rf $MINDI_TMP/iso
1438 mkdir -p $MINDI_TMP/iso/{images,archives}
1439 LogFile "INFO: mindi_lib = $MINDI_LIB"
1440 cp -f $MINDI_CACHE/{*.gz,*.img} $MINDI_TMP/iso/images 2>> $LOGFILE || LogAll "WARNING: OfferToMakeBootableISO: Cannot copy $MINDI_CACHE/*.gz to $MINDI_TMP/iso/images"
1441 for i in memdisk memtest.bin memtest.img ; do
1442 j=$MINDI_LIB/$i
1443 k=$MINDI_TMP/iso
1444 if [ -e "$j" ] ; then
1445 LogAll "INFO: Copying $j to $k"
1446 cp -f $j $k 2>> $LOGFILE || Die "Failed to copy $j to $k"
1447 cp -f $j $MINDI_TMP 2>> $LOGFILE || Die "Failed to copy $j to $MINDI_TMP"
1448 if [ _"$MONDO_SHARE" != _"" ]; then
1449 cp -f $j $MONDO_ROOT 2>> $LOGFILE || Die "Failed to copy $j to $MONDO_ROOT"
1450 fi
1451 fi
1452 done
1453 MakeMessageFile $MINDI_TMP/iso | cut -c1-80 > $MINDI_TMP/iso/message.txt
1454 if [ $KERNEL_IS_XEN = "yes" ]; then
1455 FindMboot32Binary
1456 cp $xenkernelpath $MINDI_TMP/iso/xen.gz 2>> $LOGFILE || Die "Cannot copy xen.gz ($xenkernelpath) to mindi tmp ($MINDI_TMP/iso/xen.gz). Did you run out of disk space?"
1457 cp $MBOOTC32 $MINDI_TMP/iso/mboot.c32 2>> $LOGFILE || Die "Cannot copy mboot.c32 ($MBOOTC32) to mindi tmp ($MINDI_TMP/iso/mboot.c32). Did you run out of disk space?"
1458 fi
1459 # Useful for syslinux 5.x
1460 FindLdlinux32Binary
1461 if [ -e $LDLINUXC32 ]; then
1462 cp $LDLINUXC32 $MINDI_TMP/iso/ldlinux.c32 2>> $LOGFILE || Die "Cannot copy ldlinux.c32 ($LDLINUXC32) to mindi tmp ($MINDI_TMP/iso/ldlinux.c32). Did you run out of disk space?"
1463 fi
1464 cp $kernelpath $MINDI_TMP/iso/vmlinuz 2>> $LOGFILE || Die "Cannot copy vmlinuz ($kernelpath) to mindi tmp ($MINDI_TMP/iso/vmlinuz). Did you run out of disk space?"
1465 cp $MINDI_TMP/initrd.img $MINDI_TMP/iso/initrd.img 2>> $LOGFILE || Die "Cannot copy initrd.img ($MINDI_TMP/initrd.img) to $MINDI_TMP/iso/initrd.img. Did you run out of disk space?"
1466
1467 if [ _"$MONDO_SHARE" != _"" ]; then
1468 if [ $KERNEL_IS_XEN = "yes" ]; then
1469 cp $xenkernelpath $MONDO_ROOT/xen.gz 2>> $LOGFILE || Die "Cannot copy xen.gz ($xenkernelpath) to mindi tmp ($MONDO_ROOT/xen.gz). Did you run out of disk space?"
1470 cp $MBOOTC32 $MONDO_ROOT/mboot.c32 2>> $LOGFILE || Die "Cannot copy mboot.c32 ($MBOOTC32) to mindi tmp ($MONDO_ROOT/mboot.c32). Did you run out of disk space?"
1471 fi
1472 if [ -e $LDLINUXC32 ]; then
1473 cp $LDLINUXC32 $MONDO_ROOT/ldlinux.c32 2>> $LOGFILE || Die "Cannot copy ldlinux.c32 ($LDLINUXC32) to $MONDO_ROOT/ldlinux.c32. Did you run out of disk space?"
1474 fi
1475 cp $kernelpath $MONDO_ROOT/vmlinuz 2>> $LOGFILE || Die "Cannot copy vmlinuz ($kernelpath) to mondo root ($MONDO_ROOT/vmlinuz). Did you run out of disk space?"
1476 cp $MINDI_TMP/initrd.img $MONDO_ROOT/initrd.img 2>> $LOGFILE || Die "Cannot copy initrd.img ($MINDI_TMP/initrd.img) to $MONDO_ROOT/initrd.img. Did you run out of disk space?"
1477 fi
1478 MakeBootConfFile isolinux > $MINDI_TMP/iso/isolinux.cfg
1479 if [ "$ARCH" != "ia64" ] ; then
1480 cp $ISOLINUX $MINDI_TMP/iso/isolinux.bin 2>> $LOGFILE || Die "Cannot copy isolinux.bin ($ISOLINUX) to $MINDI_TMP/iso - did you run out of disk space?"
1481 fi
1482 old_pwd=`pwd`
1483 cd "$MINDI_TMP/iso"
1484 if [ "$ARCH" != "ia64" ] ; then
1485 if [ _"$MONDO_SHARE" != _"" ]; then
1486 cp -f $MINDI_TMP/iso/{isolinux.cfg,initrd.img,vmlinuz,isolinux.bin,message.txt,boot*.txt,pxe.txt} $MONDO_ROOT 2>> $LOGFILE || Die "Cannot copy core files to ramdisk for boot disk (under $MONDO_ROOT). Did you run out of disk space?"
1487 if [ -e $MINDI_TMP/iso/ldlinux.c32 ]; then
1488 cp $MINDI_TMP/iso/ldlinux.c32 $MONDO_ROOT 2>> $LOGFILE || Die "Cannot copy ldlinux.c32 (from $MINDI_TMP/iso/$LDLINUXC32) to $MONDO_ROOT. Did you run out of disk space?"
1489 fi
1490 if [ $KERNEL_IS_XEN = "yes" ]; then
1491 cp -f $MINDI_TMP/iso/{mboot.c32,xen.gz} $MONDO_ROOT 2>> $LOGFILE || Die "Cannot copy Xen core files to ramdisk for boot disk (under $MONDO_ROOT). Did you run out of disk space?"
1492 fi
1493 cp -f $MONDO_SHARE/autorun $MINDI_TMP/iso 2>> $LOGFILE
1494 fi
1495 $ISO_CMD -U $ISO_OPT -V Mindi_Image -o $MINDI_CACHE/mindi.iso -b isolinux.bin -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table . > /dev/null 2> $MINDI_TMP/mkisofs.log
1496 else
1497 $ISO_CMD $ISO_OPT -V Mindi_Image -o $MINDI_CACHE/mindi.iso -b images/mindi-bootroot.$BOOT_SIZE.img -c images/boot.cat -no-emul-boot . > /dev/null 2> $MINDI_TMP/mkisofs.log
1498 fi
1499 if [ "$?" -ne "0" ] ; then
1500 LogFile "----------- $ISO_CMD's errors --------------"
1501 LogAll "$ISO_CMD returned the following errors:"
1502 cat $MINDI_TMP/mkisofs.log | tee -a $LOGFILE
1503 LogAll "ERROR: Failed to create ISO image."
1504 else
1505 LogAll "INFO: Created bootable ISO image at $MINDI_CACHE/mindi.iso"
1506 fi
1507 rm -f $MINDI_TMP/mkisofs.log
1508 cd "$old_pwd"
1509}
1510
1511
1512OfferToMakeBootableUSB() {
1513 local i
1514 if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ _"$MONDO_SHARE" = _"" ]; then
1515 echo -n "Shall I make a bootable USB device ? (y/[n]) "
1516 read i
1517 [ "$i" != "y" ] && [ "$i" != "Y" ] && return 0
1518 if [ "$USBDEVICE" = "" ]; then
1519 echo -en "Please enter the device name of your USB device (e.g. /dev/sda) : "
1520 read dev
1521 USBDEVICE=$dev
1522 fi
1523 echo "WARNING: This will erase all content on $USBDEVICE"
1524 echo -en "Are you sure you want to use $USBDEVICE (y/[n]) "
1525 read i
1526 [ "$i" != "y" ] && [ "$i" != "Y" ] && return 0
1527 fi
1528 rm -Rf $MINDI_TMP/usb
1529 mkdir -p $MINDI_TMP/usb
1530 USBPART="${USBDEVICE}1"
1531
1532 echo -en "Transforming $USBDEVICE in a Bootable device "
1533 echo -en "."
1534 LogFile "INFO: Transforming $USBDEVICE in a Bootable device"
1535 LogFile "INFO: Checking $USBDEVICE"
1536 $FDISK -l $USBDEVICE 2>&1 >> $LOGFILE
1537 if [ $? -ne 0 ]; then
1538 LogAll "ERROR: Unable to access $USBDEVICE"
1539 LogAll " Make sure your USB device is plugged in"
1540 MindiExit -1
1541 fi
1542 echo -en "."
1543 # Some distro do auto mount at that point (Ubuntu)
1544 LogFile "INFO: Unmounting $USBPART just in case"
1545 umount $USBPART 2>> $LOGFILE 1>> $LOGFILE
1546 # If your key has no MBR it may cause an issue
1547 # Use dd if=mbr.bin of=$USBDEVICE or ms-sys -s $USBDEVICE
1548 if [ -r $MBRFILE ]; then
1549 LogAll "INFO: Installing an MBR ($MBRFILE) on $USBDEVICE"
1550 dd if=$MBRFILE of=$USBDEVICE
1551 else
1552 LogAll "WARNING: You may need to install an MBR (usually in $MBRFILE, but not found on your system)"
1553 LogAll " on $USBDEVICE with dd if=$MBRFILE of=$USBDEVICE"
1554 fi
1555 LogFile "INFO: Preparing $USBDEVICE"
1556 cat > $MINDI_TMP/fdisk.txt << EOF
1557d
1558d
1559d
1560d
1561n
1562p
15631
1564
1565
1566t
1567b
1568a
15691
1570w
1571EOF
1572 $FDISK $USBDEVICE 2>> $LOGFILE 1>> $LOGFILE < $MINDI_TMP/fdisk.txt
1573 if [ $? -ne 0 ]; then
1574 LogAll "ERROR: Unable to create a vfat Filesystem on $USBDEVICE"
1575 LogAll " Make sure your USB device is plugged in"
1576 $FDISK -l $USBDEVICE 2>&1 | tee -a $LOGFILE
1577 MindiExit -1
1578 fi
1579 LogFile "fdisk build file"
1580 LogFile "----------------"
1581 cat $MINDI_TMP/fdisk.txt >> $LOGFILE
1582 LogFile "----------------"
1583 rm -f $MINDI_TMP/fdisk.txt
1584 LogFile "INFO: The USB device $USBDEVICE now looks like this:"
1585 $FDISK -l $USBDEVICE 2>&1 | tee -a $LOGFILE
1586 echo -en "."
1587 # Calling kpartx in case devices were not created
1588 if [ -x "/sbin/kpartx" ]; then
1589 /sbin/kpartx -a $USBDEVICE
1590 fi
1591 # Some distro do auto mount at that point (Ubuntu)
1592 LogFile "INFO: Unmounting $USBPART just in case again"
1593 umount $USBPART 2>> $LOGFILE 1>> $LOGFILE
1594 echo -en "."
1595 # Some distro have a dmsetup conf at that point so removing it Cf: http://trac.mondorescue.org/ticket/651
1596 if [ "`which dmsetup`" != "" ]; then
1597 block_id="`echo $USBPART | sed 's|/dev/||g'`"
1598 if [[ "`dmsetup ls | awk '{print $1}' | grep $block_id`" != "" ]]; then
1599 LogFile "INFO: Removing $block_id from device mapper."
1600 sleep 1
1601 dmsetup remove $block_id
1602 fi
1603 fi
1604 echo -en "."
1605 LogFile "INFO: Creating a vfat filesystem on $USBPART"
1606 mkdosfs -F 32 $USBPART 2>&1 >> $LOGFILE
1607 if [ $? -ne 0 ]; then
1608 LogAll "ERROR: Unable to create a vfat filesystem on $USBPART"
1609 LogAll " Make sure your USB device is plugged in and partitioned ($USBPART must exist on it)"
1610 $FDISK -l $USBDEVICE 2>&1 | tee -a $LOGFILE
1611 MindiExit -1
1612 fi
1613 echo -en "."
1614 LogFile "INFO: Mounting $USBPART on $MINDI_TMP/usb"
1615 mount $USBPART $MINDI_TMP/usb 2>> $LOGFILE
1616 if [ $? -ne 0 ]; then
1617 LogAll "ERROR: Unable to mount $USBPART on $MINDI_TMP/usb"
1618 LogAll " Make sure your USB device is plugged in, partitioned and formated ($USBPART must exist on it)"
1619 $FDISK -l $USBDEVICE 2>&1 | tee -a $LOGFILE
1620 MindiExit -1
1621 fi
1622 echo -en "."
1623 mkdir -p $MINDI_TMP/usb/images
1624 cp -f $MINDI_CACHE/*.img $MINDI_CACHE/*.gz $MINDI_TMP/usb/images 2>> $LOGFILE || LogAll "ERROR: OfferToMakeBootableUSB: Cannot copy $i to $MINDI_TMP/usb/images"
1625 echo -en "."
1626 LogFile "INFO: mindi_lib = $MINDI_LIB"
1627 for i in memdisk memtest.bin memtest.img ; do
1628 j=$MINDI_LIB/$i
1629 k=$MINDI_TMP/usb
1630 if [ -e "$j" ] ; then
1631 LogIt "INFO: Copying $j to $k"
1632 cp -f $j $k 2>> $LOGFILE || Die "Failed to copy $j to $k"
1633 cp -f $j $MINDI_TMP 2>> $LOGFILE || Die "Failed to copy $j to $MINDI_TMP"
1634 fi
1635 done
1636 echo -en "."
1637 MakeMessageFile $MINDI_TMP/usb | cut -c1-80 > $MINDI_TMP/usb/message.txt
1638 echo -en "."
1639 cp $kernelpath $MINDI_TMP/usb/vmlinuz 2>> $LOGFILE || Die "Cannot copy vmlinuz ($kernelpath) to mindi tmp ($MINDI_TMP/usb/vmlinuz). Did you run out of disk space?"
1640 echo -en "."
1641 cp $MINDI_TMP/initrd.img $MINDI_TMP/usb/initrd.img 2>> $LOGFILE
1642 echo -en "."
1643 MakeBootConfFile syslinux > $MINDI_TMP/usb/syslinux.cfg
1644 echo -en "."
1645 LogAll "----------- syslinux's conf --------------"
1646 cat $MINDI_TMP/usb/syslinux.cfg |tee -a $LOGFILE
1647 LogAll "------------------------------------------"
1648 umount $MINDI_TMP/usb
1649 if [ "$ARCH" != "ia64" ] ; then
1650 syslinux -v 2>&1 | grep -q 4.02
1651 if [ $? -eq 0 ]; then
1652 # This buggy version of syslinux requires a call to --stupid and not -s
1653 syslinux --stupid $USBPART 2>> $MINDI_TMP/syslinux.log
1654 res=$?
1655 else
1656 syslinux -s $USBPART 2>> $MINDI_TMP/syslinux.log
1657 res=$?
1658 fi
1659 if [ $res -ne 0 ] ; then
1660 LogAll "----------- syslinux's errors --------------"
1661 cat $MINDI_TMP/syslinux.log |tee -a $LOGFILE
1662 LogAll "------------------------------------------"
1663 LogIt "ERROR: Failed to create USB image."
1664 else
1665 echo -e "$DONE"
1666 LogFile "INFO: Created bootable USB image on $USBDEVICE"
1667 fi
1668 rm -f $MINDI_TMP/syslinux.log
1669 else
1670 LogAll "ERROR: No USB boot support for ia64"
1671 MindiExit -1
1672 fi
1673}
1674
1675
1676MakeMessageFile() {
1677
1678 if [ -x "/bin/lsb_release" ]; then
1679 DESC=`/bin/lsb_release -d | cut -d: -f2 | sed "s/[ \t]*//"`
1680 elif [ -r /etc/arch-release ]; then # this code must be written before /etc/issue test to avoid errors
1681 DESC="Arch Linux"
1682 if [ -r /var/log/pacman.log ]; then
1683 # there are no releases but we can get the last system upgrade
1684 # Output example: Arch Linux [2011-03-03 01:39]
1685 DESC="$DESC $(tac /var/log/pacman.log | grep -m1 'full system upgrade' | cut -d']' -f1)]"
1686 fi
1687 elif [ -r /etc/issue.net ]; then
1688 DESC=`head -1 /etc/issue.net`
1689 elif [ -r /etc/issue ]; then
1690 DESC=`head -1 /etc/issue`
1691 elif [ -x "/usr/bin/pbdistrocheck" ]; then
1692 # For pb >= 0.9.8
1693 DESC=`/usr/bin/pbdistrocheck -s | cut -d, -f1-4`
1694 else
1695 DESC="Unknown desc"
1696 fi
1697 sed "s/ZZZZZ/$MINDI_VERSION/" $MINDI_LIB/msg-txt | sed "s/KKKKK/Kernel $KERVER/" | sed "s/AAAAA/on a $ARCH architecture/" | sed "s/TTTTT/`LC_TIME=C date`/" | sed "s/MMMMM/`hostname`/" | sed "s/DDDDD/$DESC/"
1698 if [ _"$MONDO_SHARE" != _"" ]; then
1699 if [ "$CDRECOVERY" != "yes" ] ; then
1700 if [ -e "$MINDI_TMP/NETFS-SERVER-MOUNT" ] ; then
1701 echo -en "Press <0eenter07> for 0cnetwork restore07\n"
1702 echo -en "$BOOT_MEDIA_MESSAGE"
1703 elif [ ! "$MINDI_TMP" ] ; then
1704 echo -en "FYI, this is _not_ a Mondo Rescue CD.\n"
1705 if [ -e "$MINDI_LIB/memtest.img" ] ; then
1706 echo -en "Type 'memtest' <Enter> to test your PC's memory intensively.\nJust press <Enter> to go to the main test menu.\n"
1707 fi
1708 else
1709 echo -en "$BOOT_MEDIA_MESSAGE"
1710 fi
1711 else
1712 echo -en "\
1713To restore your disk to factory defaults, type 'RESTORE' <enter>.\n\
1714CAUTION: THIS WILL ERASE YOUR WHOLE DISK !!!\n"
1715 fi
1716 fi
1717
1718 # Also create the other help screens
1719 head -24 $MINDI_CONF/README.bootparam | cut -c1-80 > $1/boot1.txt
1720 head -48 $MINDI_CONF/README.bootparam | tail -24 | cut -c1-80 > $1/boot2.txt
1721 head -24 $MINDI_CONF/README.pxe | cut -c1-80 > $1/pxe.txt
1722}
1723
1724
1725MakeBootConfFile() {
1726 local options i ooo
1727 options=""
1728 # Type of boot file (elilo or syslinux/isolinux)
1729 type=$1
1730 if [ "$type" = "elilo" ]; then
1731 sep="="
1732 else
1733 sep=" "
1734 fi
1735
1736 # Generic header for conf file
1737 if [ "$type" != "elilo" ] ; then
1738 echo -en "prompt 1\ndisplay message.txt\nF1 message.txt\nF2 boot1.txt\nF3 boot2.txt\nF4 pxe.txt\n"
1739 else
1740 echo -en "prompt\n"
1741 fi
1742
1743 # Compute which default option to boot from
1744 if [ "$CDRECOVERY" = "yes" ] ; then
1745 echo -en "default${sep}RESTORE\n"
1746 # In case it's mondoarchive
1747 elif [ _"$MONDO_SHARE" != _"" ]; then
1748 if [ -e "$MINDI_TMP/NETFS-SERVER-MOUNT" ] ; then
1749 echo -en "default${sep}iso\n"
1750 else
1751 echo -en "default${sep}${MINDI_DEFAULT_BOOT_OPTION}\n"
1752 fi
1753 else
1754 echo -en "default${sep}expert\n"
1755 fi
1756
1757 # Handle timeout
1758 if [ "$CDRECOVERY" != "yes" ] ; then
1759 echo -en "timeout${sep}${MINDI_BOOT_TIMEOUT}\n"
1760 else
1761 echo -en "timeout${sep}10000\n"
1762 fi
1763 echo -en "\n"
1764
1765 # prepare which labels will be generated
1766 if [ "$CDRECOVERY" = "yes" ] ; then
1767 options="RESTORE expert"
1768 else
1769 if [ _"$MONDO_SHARE" != _"" ]; then
1770 options="interactive expert compare iso nuke isonuke"
1771 else
1772 options="expert"
1773 fi
1774 fi
1775
1776 # Generate rest of conf file
1777 for i in $options ; do
1778 ooo=$i
1779 [ "$ooo" = "RESTORE" ] && ooo="RESTORE nuke"
1780 if [ "$type" = "elilo" ]; then
1781 outstr="image=/vmlinuz\n\tlabel=$i\n\tinitrd=/initrd.img\n\troot=/dev/ram0 append=\" rw ramdisk_size=$ramdisk_size $ooo $MINDI_ADDITIONAL_BOOT_PARAMS \"\n"
1782 else
1783 ps="/"
1784 if [ "$type" = "syslinux" ]; then
1785 ps=""
1786 fi
1787 if [ $KERNEL_IS_XEN = "no" ]; then
1788 outstr="label $i\n\tkernel ${ps}vmlinuz\n\tappend initrd=${ps}initrd.img root=/dev/ram0 rw ramdisk_size=$ramdisk_size ${ooo} $MINDI_ADDITIONAL_BOOT_PARAMS\n"
1789 else
1790 outstr="label $i\n\tkernel ${ps}mboot.c32\n\tappend ${ps}xen.gz --- ${ps}vmlinuz root=/dev/ram0 rw ramdisk_size=$ramdisk_size ${ooo} $MINDI_ADDITIONAL_BOOT_PARAMS --- ${ps}initrd.img\n"
1791 fi
1792 fi
1793 echo -en "$outstr"
1794 done
1795 if [ -e "$MINDI_LIB/memtest.img" ] ; then
1796 if [ "$type" = "elilo" ]; then
1797 echo -en "image=/memtest.bin\n\tlabel=memtest\n"
1798 echo -en "image=/memdisk\n\tlabel=memdisk\nappend=\"initrd=memtest.img\"\n"
1799 else
1800 ps="/"
1801 if [ "$type" = "syslinux" ]; then
1802 ps=""
1803 fi
1804 echo -en "label memtest\n\tkernel ${ps}memtest.bin\n"
1805 echo -en "label memdisk\n\tkernel ${ps}memdisk\nappend initrd=${ps}memtest.img\n"
1806 fi
1807 fi
1808}
1809
1810
1811PrepareBootDiskImage_LILO() {
1812 local imagesdir dev imagefile fname i kernelpath cfg_file testpath options retval outstr old_pwd ooo max_kernel_size liloconf
1813 imagesdir=$MINDI_CACHE
1814 kernelpath=$1
1815
1816 retval=0
1817
1818 old_pwd=`pwd`
1819 [ ! -e "$kernelpath" ] && Die "PBDI lilo - cannot find $kernelpath kernel"
1820 echo -en "Making "$BOOT_SIZE"KB boot disk..."
1821 TurnTgzIntoRdz $MINDI_LIB/rootfs $MINDI_TMP/initrd.img `du -sk $kernelpath | cut -f1` || Die "Could not turn rootfs into initrd.img; are you SURE your kernel supports loopfs?"
1822 echo -en "..."
1823 imagefile=$imagesdir/mindi-bootroot.$BOOT_SIZE.img
1824 mkdir -p $mountpoint
1825 dd if=/dev/zero of=$imagefile bs=1k count=$BOOT_SIZE &> /dev/null || Die "Cannot dd blank file"
1826 LogFile "Creating vfat filesystem on $imagefile"
1827 mkdosfs $imagefile >> $LOGFILE 2>> $LOGFILE
1828 mount -t vfat -o loop $imagefile $mountpoint || LogAll "ERROR: Cannot mount (PBDI)"
1829
1830 # copy Mindi's skeleton fs & lilo/syslinux/whatever stuff into it
1831 mkdir -p $mountpoint/etc
1832 liloconf=$mountpoint/elilo.conf
1833
1834 MakeBootConfFile elilo > $liloconf
1835
1836 # Copy it so that CD-ROM menu entry is satisfied
1837 mountefi=0
1838 df -T | grep /boot/efi | grep -q vfat
1839 if [ $? -ne 0 ]; then
1840 mount /boot/efi
1841 if [ $? -ne 0 ]; then
1842 echo "You have to mount your EFI partition when using mindi"
1843 MindiExit -1
1844 fi
1845 mountefi=1
1846 fi
1847 el=`find /boot/efi -name elilo.efi`
1848 cp $el $mountpoint
1849 cp $liloconf $mountpoint
1850 if [ $mountefi -eq 1 ]; then
1851 umount /boot/efi 2>&1 > /dev/null
1852 fi
1853
1854 LogFile "INFO: Copying $MINDI_TMP/initrd.img to $mountpoint..."
1855 cp -f $MINDI_TMP/initrd.img $mountpoint 2>> $LOGFILE
1856 if [ "$?" -ne "0" ] ; then
1857 LogIt "ERROR: Failed to copy $MINDI_TMP/initrd.img to $mountpoint"
1858 cat $MINDI_TMP/mtpt.$$ >> $LOGFILE
1859 LogIt " Please unload some of your modules and try again. Or increase EXTRA_SPACE and BOOT_SIZE in $MINDI_CONFIG"
1860 rm -f $MINDI_TMP/mtpt.$$
1861 LogIt "ERROR: Cannot incorporate initrd.img in bootdisk (kernel / modules too big?)"
1862 retval=$(($retval+1))
1863 fi
1864 MakeMessageFile $mountpoint | cut -c1-80 > $mountpoint/message.txt
1865
1866 mkdir -p $mountpoint/tmp
1867 if [ -f "$MINDI_TMP/$MRCFG" ]; then
1868 cp -f $MINDI_TMP/$MRCFG $mountpoint/tmp
1869 fi
1870
1871 # copy the kernel across
1872 [ "$mountpoint" != "" ] && rm -Rf $mountpoint/lost+found
1873 dd if=/dev/zero of=$mountpoint/zero bs=1k count=16 &> /dev/null
1874 free_space=`df -k -P $mountpoint | tail -n1 | tr -s ' ' '\t' | cut -f4`
1875 cp -f $kernelpath $mountpoint/vmlinuz > /dev/null 2>> $LOGFILE
1876 if [ "$?" -ne "0" ] ; then
1877 LogFile "INFO: Files at mountpoint ($mountpoint) :"
1878 du -sk $mountpoint/* >> $LOGFILE
1879 LogFile "--- end of list of files ---"
1880 echo -en "Kernel size = `du -sk $kernelpath | cut -f1` K\nRamdisk free = $free_space K\n" >> $LOGFILE
1881 [ "$mountpoint" != "" ] && rm -f $mountpoint/vmlinuz
1882 cd "$old_pwd"
1883 umount $mountpoint || Die "Cannot unmount mountpoint ($mountpoint)"
1884 rmdir $mountpoint || LogIt "ERROR: Cannot rmdir (PBDI)"
1885 # losetup /dev/loop0 -d
1886 [ "$imagefile" != "" ] && rm -f $imagefile
1887 LogIt "ERROR: Sorry, your kernel is too big for your image"
1888 Die "Try to increase EXTRA_SPACE and BOOT_SIZE in $MINDI_CONFIG"
1889 return 0
1890 fi
1891 max_kernel_size=$(($free_space+`du -sk $kernelpath | cut -f1`))
1892 LogFile "INFO: Free space left on image = $free_space KB"
1893 LogFile "INFO: Max kernel size on $BOOT_SIZE KB image (est'd) = $max_kernel_size K"
1894 # make it bootable
1895 [ "$mountpoint" != "" ] && rm -f $mountpoint/zero
1896 [ -e "$MINDI_LIB/memdisk" ] && cp -f $MINDI_LIB/memdisk $mountpoint 2>> $LOGFILE
1897 if [ "$KERN_DISK_MADE" ] ; then
1898 LogFile "INFO: Not running LILO. It's not that kind of disk."
1899 fi
1900
1901 cp `dirname $kernelpath`/*.efi $mountpoint 2>> $LOGFILE
1902 umount $mountpoint || Die "Cannot unmount mountpoint ($mountpoint)"
1903 echo -en "..."
1904 rmdir $mountpoint || LogIt "ERROR: Cannot rmdir (PBDI)"
1905 if [ "$retval" -eq "0" ] ; then
1906 echo -en "...$DONE\n"
1907 if [ "$KERN_DISK_MADE" ] ; then
1908 LogIt "INFO: $BOOT_SIZE KB boot disks were created OK\n"
1909 fi
1910 else
1911 echo -en "...failed\n"
1912 LogIt "WARNING: $BOOT_SIZE""KB boot disk was NOT created\n"
1913 [ "$imagefile" != "" ] && rm -f $imagefile
1914 fi
1915 [ "$retval" -ne "0" ] && LogIt "WARNING: PrepareBootDiskImage() is returning nonzero"
1916 return $retval
1917}
1918
1919
1920PrepareBootDiskImage_ISOLINUX() {
1921 local imagesdir dev imagefile fname i kernelpath cfg_file testpath options retval outstr old_pwd ooo max_kernel_size bootimage retval
1922 imagesdir=$MINDI_CACHE
1923 kernelpath=$1
1924 do_boot_root_thingy=""
1925 retval=0
1926
1927 old_pwd=`pwd`
1928 [ ! -e "$kernelpath" ] && Die "PBDI isolinux - cannot find $kernelpath kernel"
1929 echo -en "Making "$BOOT_SIZE"KB boot disk..."
1930 TurnTgzIntoRdz $MINDI_LIB/rootfs $MINDI_TMP/initrd.img `du -sk $kernelpath | cut -f1` || Die "Could not turn rootfs into initrd.img; are you SURE your kernel supports loopfs?"
1931 echo -en "..."
1932 imagefile=$MINDI_TMP/mindi-bootroot.$BOOT_SIZE.img
1933 mkdir -p $mountpoint
1934 dd if=/dev/zero of=$imagefile bs=1k count=$BOOT_SIZE &> /dev/null || Die "Cannot dd blank file"
1935 LogFile "INFO: Creating vfat filesystem on $imagefile"
1936 mkfs.vfat $imagefile >> $LOGFILE 2>> $LOGFILE
1937 # syslinux should be run on a local file (doen't work through NFS Cf: #297)
1938 syslinux $imagefile >> $LOGFILE 2>> $LOGFILE
1939
1940 # Only move it now to its final destination and use it now
1941 mv $imagefile $imagesdir
1942 imagefile=$imagesdir/mindi-bootroot.$BOOT_SIZE.img
1943
1944 mount -t vfat -o loop $imagefile $mountpoint || LogIt "ERROR: Cannot mount (PBDI)"
1945
1946 # copy Mindi's skeleton fs & lilo/syslinux/whatever stuff into it
1947 MakeMessageFile $mountpoint | cut -c1-80 > $mountpoint/message.txt
1948 MakeBootConfFile isolinux > $mountpoint/syslinux.cfg
1949 LogFile "INFO: Copying $MINDI_TMP/initrd.img to $mountpoint/initrd.img..."
1950 cp -f $MINDI_TMP/initrd.img $mountpoint/initrd.img 2>> $LOGFILE
1951 if [ "$?" -ne "0" ] ; then
1952 LogAll "ERROR: Failed to copy $MINDI_TMP/initrd.img to $mountpoint"
1953 cat $MINDI_TMP/mtpt.$$ >> $LOGFILE
1954 LogAll " Please unload some of your modules and try again."
1955 rm -f $MINDI_TMP/mtpt.$$
1956 LogAll " Cannot incorporate initrd.img in bootdisk (kernel / modules too big?)."
1957 LogAll " Try to increase EXTRA_SPACE and BOOT_SIZE in $MINDI_CONFIG"
1958 retval=$(($retval+1))
1959 fi
1960
1961 mkdir -p $mountpoint/tmp
1962 if [ -f "$MINDI_TMP/$MRCFG" ]; then
1963 cp -f $MINDI_TMP/$MRCFG $mountpoint/tmp
1964 fi
1965
1966 # copy the kernel across
1967 [ "$mountpoint" != "" ] && rm -Rf $mountpoint/lost+found
1968 dd if=/dev/zero of=$mountpoint/zero bs=1k count=16 &> /dev/null
1969 free_space=`df -k -P $mountpoint | tail -n1 | tr -s ' ' '\t' | cut -f4`
1970
1971 retval=0
1972 cp -f $kernelpath $mountpoint/vmlinuz &> /dev/null
1973 retval=$?
1974 if [ $KERNEL_IS_XEN = "yes" ]; then
1975 cp -f $xenkernelpath $mountpoint/xenkernel &> /dev/null
1976 let retval+=$?
1977 fi
1978
1979 if [ "$retval" -ne "0" ] ; then
1980 LogFile "INFO: Files at mountpoint ($mountpoint) :"
1981 du -sk $mountpoint/* >> $LOGFILE
1982 LogFile "--- end of list of files ---"
1983 echo -en "Kernel size = `du -sk $kernelpath | cut -f1` K\nRamdisk free = $free_space K\n" >> $LOGFILE
1984 [ "$mountpoint" != "" ] && rm -f $mountpoint/vmlinuz
1985 cd "$old_pwd"
1986 umount $mountpoint || Die "Cannot unmount mountpoint ($mountpoint)"
1987 rmdir $mountpoint || LogAll "ERROR: Cannot rmdir (PBDI)"
1988
1989 LogIt "ERROR: Sorry, your kernel is too big for your image"
1990 Die "Try to increase EXTRA_SPACE and BOOT_SIZE in $MINDI_CONFIG"
1991 fi
1992 max_kernel_size=$(($free_space+`du -sk $kernelpath | cut -f1`))
1993 LogFile "INFO: Free space left on image = $free_space KB"
1994 LogFile "INFO: Max kernel size on $BOOT_SIZE KB image (est'd) = $max_kernel_size K"
1995
1996 # make it bootable
1997 [ "$mountpoint" != "" ] && rm -f $mountpoint/zero
1998 mkdir -p $mountpoint/etc
1999 [ -e "$MINDI_LIB/memdisk" ] && cp -f $MINDI_LIB/memdisk $mountpoint 2>> $LOGFILE
2000 umount $mountpoint || Die "Cannot unmount mountpoint ($mountpoint)"
2001 echo -en "..."
2002 rmdir $mountpoint || LogAll "ERROR: Cannot rmdir (PBDI)"
2003
2004 if [ "$retval" -eq "0" ] ; then
2005 echo -en "...$DONE\n"
2006 if [ "$KERN_DISK_MADE" ] ; then
2007 [ "$imagefile" != "" ] && rm -f $imagefile
2008 LogAll "INFO: $BOOT_SIZE KB boot disks were created OK\n"
2009 fi
2010 else
2011 echo -en "...failed\n"
2012 LogAll "WARNING: $BOOT_SIZE""KB boot disk was NOT created\n"
2013 [ "$imagefile" != "" ] && rm -f $imagefile
2014 fi
2015 [ "$retval" -ne "0" ] && LogAll "ERROR: PrepareBootDiskImage() is returning nonzero"
2016 return $retval
2017}
2018
2019
2020ParseModprobeForIncludes() {
2021local MODPROBE_CONF mpincfile includes include
2022
2023MODPROBE_CONF=/etc/modprobe.conf
2024mpincfile=$1
2025touch $mpincfile
2026if [ -a $MODPROBE_CONF ]; then
2027 includes=$($AWK '/^[ \t]*include[ \t]+/ {if(NF>=2){print $2}}' $MODPROBE_CONF|sort -u)
2028 if [ -n "$includes" ]; then
2029 for include in $includes
2030 do
2031 if [ -a "$include" ]; then
2032 echo $include >> $mpincfile
2033 fi
2034 done
2035 fi
2036fi
2037}
2038
2039
2040PrepareDataDiskImages() {
2041 local needlist bigdir diskdir imagesdir res i j k old_pwd lines lfiles includefile
2042
2043 imagesdir=$MINDI_CACHE
2044 rm -f $imagesdir/mindi.iso
2045 needlist=$MINDI_TMP/what-we-need.txt
2046 bigdir=$MINDI_TMP/bigdir
2047 mkdir -p $bigdir/usr/bin
2048 mkdir -p $bigdir/usr/sbin
2049 includefile=$MINDI_TMP/$$.includefile.txt
2050
2051 lfiles=`ls $DEPLIST_DIR/* | grep -v /minimal`
2052 if [ -e "$DEPLIST_FILE" ]; then
2053 lfiles="$DEPLIST_FILE $lfiles"
2054 fi
2055 lines=`grep -vx " *#.*" $lfiles | grep -vx "" | wc -l`
2056 ParseModprobeForIncludes $includefile
2057 lines=$(($lines+`cat $includefile | wc -l`))
2058 cat $lfiles $includefile | GenerateGiantDependencyList $needlist $lines
2059 res=$?
2060 rm -f $includefile
2061 ListKernelModulePaths >> $needlist
2062 if [ "$res" -ne "0" ] ; then
2063 Die "You have $res files present in dependency list\nbut absent from filesystem."
2064 fi
2065 mkdir -p $bigdir/tmp
2066 if [ _"$MONDO_SHARE" != _"" ]; then
2067 # BCO: no reason to have the cfg file stored twice
2068 MakeMondoConfigFile $MINDI_TMP/$MRCFG
2069 cp -f $MINDI_TMP/$MRCFG $bigdir/tmp &> /dev/null
2070 fi
2071
2072 # Needs to be done after the MRCFG creation
2073 FindAndAddUserKeyboardMappingFile
2074
2075 [ -d "/mnt/.boot.d" ] && echo "GENTOO" > $bigdir/tmp/DUMBASS-GENTOO
2076 DropOptimizedLibraries $needlist $bigdir
2077 echo -en "Assembling dependency files"
2078
2079 CopyDependenciesToDirectory < $needlist $bigdir `wc -l $needlist`
2080
2081 # also copy io.sys and msdos.sys, if we can find them
2082 for i in `mount | cut -d' ' -f3` ; do
2083 for j in io.sys msdos.sys ; do
2084 [ -e "$i/$j" ] && cp -f $i/$j $bigdir 2>> $LOGFILE
2085 done
2086 done
2087
2088 # master boot record, too
2089 i=`cat $MINDI_TMP/BOOTLOADER.DEVICE 2> /dev/null`
2090 if [ "$i" ] ; then
2091 LogAll "INFO: Backing up $i's MBR"
2092 dd if=$i of=$bigdir/BOOTLOADER.MBR bs=446 count=1 >> $LOGFILE 2>> $LOGFILE
2093 sleep 1
2094 sync
2095 j=$i
2096 [ -h "$j" ] && j=`readlink -f $j`
2097 LogAll "INFO: Creating /dev/boot_device ($j)"
2098 mkdir -p $bigdir/dev
2099 cp -pRdf $j $bigdir/dev/boot_device 2>> $LOGFILE || Die "Unable to create /dev/boot_device on ramdisk"
2100 fi
2101
2102 old_pwd=`pwd`
2103 cd "$bigdir"
2104
2105 # Get terminfo content
2106 ti="usr/share/terminfo/l"
2107 if [ -d /$ti ]; then
2108 mkdir -p $ti
2109 cp -Rdf /$ti/* $ti 2>> $LOGFILE || LogAll "ERROR: issue copying terminfo"
2110 fi
2111 if [ -e "$MONDO_SHARE/restore-scripts" ]; then
2112 cp -Rdf $MONDO_SHARE/restore-scripts/* . 2>> $LOGFILE
2113 [ "$?" -ne "0" ] && [ _"$MONDO_SHARE" != _"" ] && Die "Cannot find/install $MONDO_SHARE/restore-scripts"
2114 fi
2115 if [ -d "/lib/dev-state" ]; then
2116 cp -a /lib/dev-state ./lib/ 2>> $MINDI_TMP/$$.log || LogAll "ERROR: Unable to handle /lib/dev-state" $MINDI_TMP/$$.log
2117 fi
2118 cd "$old_pwd"
2119 echo -e "$DONE"
2120 TOTAL_BIGDIR_SIZE=`du -sk $bigdir | cut -f1`
2121 MakeMountlist $MINDI_TMP/mountlist.txt
2122 CheckMountlist $MINDI_TMP/mountlist.txt
2123 mkdir -p $bigdir/tmp
2124 cp -f $MINDI_TMP/mountlist.txt $bigdir/tmp/mountlist.txt 2>> $LOGFILE || Die "Cannot copy mountlist.txt from $MINDI_TMP to data disk"
2125 if [ _"$MONDO_SHARE" != _"" ]; then
2126 cp -f $bigdir/tmp/mountlist.txt $MINDI_TMP/. 2>> $LOGFILE
2127 fi
2128 if [ $LVM != "false" ]; then
2129 $MINDI_LIB/analyze-my-lvm > $bigdir/tmp/i-want-my-lvm
2130 if [ "$?" -ne "0" ]; then
2131 LVM="false"
2132 rm -f $bigdir/tmp/i-want-my-lvm
2133 else
2134 LogFile "Your i-want-my-lvm file content is:"
2135 LogFile "-----------------------------------"
2136 cat $bigdir/tmp/i-want-my-lvm >> $LOGFILE
2137 LogFile "-----------------------------------"
2138 fi
2139 fi
2140 LogFile "Your mountlist.txt file content is:"
2141 LogFile "-----------------------------------"
2142 cat $bigdir/tmp/mountlist.txt >> $LOGFILE
2143 LogFile "-----------------------------------"
2144
2145 echo -en "$FILES_IN_FILELIST" > $bigdir/FILES-IN-FILELIST 2>> $LOGFILE
2146 echo -en "$LAST_FILELIST_NUMBER" > $bigdir/LAST-FILELIST-NUMBER 2>> $LOGFILE
2147 if [ _"$MONDO_SHARE" != _"" ]; then
2148 for q in filelist.full.gz biggielist.txt ; do
2149 [ ! -e "$MINDI_TMP/$q" ] && Die "Cannot find $MINDI_TMP/$q"
2150 cp -pRdf $MINDI_TMP/$q $bigdir/tmp 2>> $LOGFILE
2151 done
2152 fi
2153
2154 echo -en "Tarring and zipping the data content..."
2155 size_of_all_tools=`du -sk $bigdir | cut -f1`
2156 (cd "$bigdir" ; tar -b 4096 -cf - . 2>> $MINDI_TMP/$$.log | gzip -9 > $imagesdir/all.tar.gz || LogAll "ERROR: Problem creating all.tar.gz" $MINDI_TMP/$$.log)
2157 LogFile "Size of the data content"
2158 LogFile "------------------------"
2159 du -sk $imagesdir/*gz >> $LOGFILE
2160 LogFile "------------------------"
2161 echo -e "$DONE"
2162
2163 FRIENDLY_OUTSTRING="Boot and data disk images were created."
2164 rm -rf $bigdir
2165 rm -f $needlist
2166}
2167
2168
2169Prompt() {
2170 echo -en "$1"
2171 read line
2172}
2173
2174
2175ReadLine() {
2176 local i incoming
2177 read incoming
2178 i=0
2179 while [ "$i" -le "32" ] && [ "$incoming" = "" ] ; do
2180 i=$(($i+1))
2181 read incoming
2182 done
2183 echo "$incoming"
2184}
2185
2186
2187SizeOfPartition() {
2188 local devpath drive res stub
2189 device=$1
2190 if [ "`echo "$device" | grep -E "^/dev/"`" = "" ] ; then
2191 Die "Cannot find $device's size - is your /etc/fstab sane?"
2192 fi
2193 if [ "`echo "$device" | grep -F "/dev/md"`" != "" ] ; then
2194 res=`SizeOfRaidPartition $device`
2195 [ "$res" = "" ] && Die "Cannot find $device's size - is your /etc/raidtab sane?"
2196 echo "$res"
2197 return 0
2198 fi
2199 # patch from Bill <bill@iwizard.biz> - 2003/08/25
2200 res=`$FDISK -s $device 2>> $LOGFILE`
2201 # end patch
2202 # take only the first in case of multiple mount (cifs, nfs, ...)
2203 [ "$res" = "" ] && res=`df -k -P -x supermount | tr -s '\t' ' ' | grep -F "$device " | cut -d' ' -f2 | head -1`
2204 [ "$res" = "" ] && res="-1"
2205 echo $res
2206 return 0
2207}
2208
2209
2210SizeOfRaidPartition() {
2211 local real_dev smallest_size silly tmp
2212
2213 silly=999999999
2214 smallest_size=$silly
2215
2216 for real_dev in `GetRaidDevMembers $1` ; do
2217 tmp=`SizeOfPartition $real_dev`
2218 [ "$tmp" -lt "$smallest_size" ] && smallest_size=$tmp
2219 done
2220
2221 if [ "$smallest_size" = "$silly" ] ; then
2222 echo "-1"
2223 return 1
2224 else
2225 echo "$smallest_size"
2226 return 0
2227 fi
2228}
2229
2230
2231StripExecutable()
2232{
2233 local tmpfile
2234
2235 tmpfile=$MINDI_TMP/stripped.$$.dat
2236 [ -d "$1" ] || [ -h "$1" ] && return
2237 cp -f $1 $tmpfile 2>> $LOGFILE
2238 strip $tmpfile 2> /dev/null
2239 if [ "$?" -eq "0" ] ; then
2240 cp -f $tmpfile $1 2>> $LOGFILE
2241 LogFile "INFO: Stripped binary $2"
2242 fi
2243 rm -f $tmpfile
2244}
2245
2246KernelVer() {
2247 local fkern_ver fname
2248
2249 fname=$1
2250 file $fname | grep -q gzip
2251 if [ "$?" -eq "0" ] ; then
2252 # Used by ia64
2253 fkern_ver=`gzip -cd $fname | strings 2> /dev/null | grep -E "[2-9]+\.[0-9]+\.[0-9]+[^\@]*@"`
2254 else
2255 fkern_ver=`strings $fname 2> /dev/null | grep -E "[2-9]+\.[0-9]+\.[0-9]+[^\@]*@"`
2256 fi
2257 echo "$fkern_ver"
2258}
2259
2260
2261# WARNING: This function should just echo the final result !!!
2262#
2263TryToFindKernelPath() {
2264 local fname fkern_ver we_want_version possible_kernels noof_kernels possible_xenkernels noof_xenkernels kp kdate duff_kernels output root
2265
2266 we_want_version=$KERVERRUN
2267 possible_kernels=""
2268 duff_kernels=""
2269 output=""
2270
2271 if [ "$ARCH" = "ia64" ] ; then
2272 root="/boot/efi/efi"
2273 else
2274 root="/"
2275 fi
2276 # See if we're booted from a Xen kernel
2277 # From http://wiki.xensource.com/xenwiki/XenCommonProblems#head-26434581604cc8357d9762aaaf040e8d87b37752
2278 if [ -f /proc/xen/capabilities ]; then
2279 # It's a Xen kernel
2280 KERNEL_IS_XEN="yes"
2281 LogFile "INFO: It's a Xen kernel..."
2282 fi
2283
2284 for fname in `find $root -maxdepth 2 -type f | grep -Ei 'lin|kern|xen' | grep -Ev '^/proc/|^/net/|^/mnt|^/lib|^/lib64|^/bin|^/sbin|^/usr|^/tmp'` ; do
2285 [ ! -e "$fname" ] && continue
2286 [ "$fname" = "/boot/vmlinuz.shipped" ] && [ -f "/boot/vmlinuz" ] && continue; # ignore SuSE's extra kernel
2287 fkern_ver=`KernelVer $fname`
2288 [ "$fkern_ver" = "" ] && continue
2289 [ "`echo "$fkern_ver" |grep -F "$we_want_version "`" = "" ] && continue
2290 [ -f "$fname" ] || continue
2291 [ -h "$fname" ] && continue
2292 kdate=`uname -v | $AWK '{for(i=1;i<NF;i++){if(index($i,":")){print $i;};};}' | $AWK '{print $NF;}'`
2293 file $fname | grep -q gzip
2294 if [ "$?" -eq "0" ] ; then
2295 # Used by ia64
2296 if [ "`gzip -cd $fname | strings 2> /dev/null | grep -F "$kdate"`" = "" ] ; then
2297 LogFile "Have you recompiled your kernel \"$fname\" w/o rebooting? Naughty but I'll allow it..."
2298 duff_kernels="$fname $duff_kernels"
2299 else
2300 [ "`echo "$fname" | grep -F "vmlinux"`" ] && continue
2301 possible_kernels="$fname $possible_kernels"
2302 fi
2303 else
2304 if [ "`strings $fname 2> /dev/null | grep -F "$kdate"`" = "" ] ; then
2305 LogFile "Have you recompiled your kernel \"$fname\" w/o rebooting?\n Naughty but I'll allow it..."
2306 duff_kernels="$fname $duff_kernels"
2307 else
2308 [ "`echo "$fname" | grep -F "vmlinux"`" ] && continue
2309 possible_kernels="$fname $possible_kernels"
2310 fi
2311 fi
2312 done
2313 if [ ! "$possible_kernels" ] && uname -a | grep Knoppix > /dev/null ; then
2314 possible_kernels=`find /boot/vmlinuz-[23].* | tail -n1`
2315 fi
2316 if [ ! "$possible_kernels" ] ; then
2317 LogAll "INFO: No kernel matches exactly. Are there any duff kernels?"
2318 possible_kernels="$duff_kernels"
2319 if [ ! "$possible_kernels" ] ; then
2320 LogAll "INFO: Sorry, no duff kernels either"
2321 else
2322 LogAll "INFO: I bet you're running Debian or Gentoo, aren't you?"
2323 LogAll "INFO: Your kernel doesn't have a sane builddate. Oh well..."
2324 fi
2325 fi
2326 if [ $KERNEL_IS_XEN = "yes" ]; then
2327 possible_xenkernels=`echo "$possible_kernels" | tr -s ' ' '\n' | grep -i "xen" | sort -u | tr '\n' ' '`
2328 noof_xenkernels=`CountItemsIn "$possible_xenkernels"`
2329 fi
2330 possible_kernels=`echo "$possible_kernels" | tr -s ' ' '\n' | grep -vi "xen" | sort -u | tr '\n' ' '`
2331 noof_kernels=`CountItemsIn "$possible_kernels"`
2332 if [ "$noof_kernels" -eq "0" ] ; then
2333 LogAll "Could not find your kernel."
2334 if [ -e "/boot/vmlinuz" ] ; then
2335 LogAll "INFO: Using /boot/vmlinuz as a last resort."
2336 output=/boot/vmlinuz
2337 else
2338 output=""
2339 fi
2340 elif [ "$noof_kernels" -eq "1" ] ; then
2341 kp=`echo "$possible_kernels" | sed s/' '//`
2342 LogFile "INFO: Your kernel is $kp (v$KERVERRUN)"
2343 output="$kp"
2344 else
2345 for i in $possible_kernels ; do
2346 if [ "`echo $i | grep "$KERVERRUN"`" ]; then
2347 LogAll "INFO: OK, I used my initiative and found that "
2348 LogAll "INFO: $i is probably your kernel. "
2349 output="$i"
2350 break
2351 fi
2352 done
2353 if [ ! -n "$output" ]; then
2354 if [ "`echo " $possible_kernels " | grep -F "/boot/vmlinuz " &> /dev/null`" ]; then
2355 output=/boot/vmlinuz
2356 LogFile "INFO: Schlomo, this one's for you."
2357 else
2358 LogFile "INFO: Two or more possible kernels found. You may specify any one of them and the "
2359 LogFile "INFO: boot disks will still work, probably. If one does not work, try another."
2360 LogFile "INFO: $possible_kernels"
2361 output=""
2362 fi
2363 fi
2364 fi
2365 if [ $KERNEL_IS_XEN = "yes" ]; then
2366 if [ "$noof_xenkernels" -eq "0" ]; then
2367 xenkernelpath=""
2368 elif [ "$noof_xenkernels" -eq "1" ]; then
2369 xenkernelpath=`echo "$possible_xenkernels" | sed s/' '//`
2370 LogFile "INFO: Your Xen kernel is $xenkernelpath (v$KERVERRUN)"
2371 else
2372 for i in $possible_xenkernels ; do
2373 if [ "`echo $i | grep "$KERVERRUN"`" ]; then
2374 LogFile "INFO: OK, I used my initiative and found that "
2375 LogFile "INFO: $i is probably your Xen kernel. "
2376 xenkernelpath="$i"
2377 break
2378 fi
2379 done
2380 if [ ! -n "$xenkernelpath" ]; then
2381 new_possible_xenkernels=`echo "$possible_xenkernels" | tr -s ' ' '\n' | grep -E "^/boot" | sort -u | tr '\n' ' '`
2382 if [ ! -n "$new_possible_xenkernels" ]; then
2383 xenkernelpath=`echo $new_possible_xenkernels | tr -s ' ' '\n' | head -1`
2384 LogFile "INFO: Using $xenkernelpath"
2385 else
2386 LogFile "INFO: Two or more possible Xen kernels found. You may specify any one of them and the "
2387 LogFile "INFO: boot disks will still work, probably. If one does not work, try another."
2388 LogFile "INFO: $possible_xenkernels"
2389 output=""
2390 xenkernelpath=`echo $possible_xenkernels | tr -s ' ' '\n' | head -1`
2391 LogFile "INFO: Using $xenkernelpath"
2392 fi
2393 fi
2394 fi
2395 if [[ -z "$xenkernelpath" || ! -f "$xenkernelpath" ]]; then
2396 Die "Cannot find Xen kernel $xenkernelpath, aborting"
2397 fi
2398 fi
2399 LogAll "TryToFindKernelPath found $output"
2400 echo "$output"
2401}
2402
2403
2404TurnTgzIntoRdz() {
2405 local tgz_dir_fname rdz_fname tempfile old_pwd nodes kernelsize maxsize res currsize not_copied j k s w needed_modules_path d thelink
2406
2407 tgz_dir_fname=$1
2408 rdz_fname=$2
2409 kernelsize=$3
2410 maxsize=$(($BOOT_SIZE-$kernelsize))
2411 maxsize=$(($maxsize*2)); # to allow for compression of 50%
2412 tempfile=$MINDI_TMP/temp.rd
2413 res=0
2414 echo -en "..."
2415 dd if=/dev/zero of=$tempfile bs=1k count=$ramdisk_size &> /dev/null || Die "Not enough room for temporary ramdisk (TurnTgzIntoRdz)"
2416 echo -en "..."
2417 LogFile "INFO: Creating ext2 filesystem on $tempfile"
2418 mke2fs -b 1024 -m 1 -i 2048 -F $tempfile >> $LOGFILE 2>> $LOGFILE || Die "Unable to create an ext2 file system on $tempfile"
2419 echo -en "..."
2420 mkdir -p $mountpoint
2421 mount -t ext2 -o loop $tempfile $mountpoint || Die "Cannot loopmount $tempfile to $mountpoint! The reason may be missing support for loopfs or ext2 (or both) in the running kernel."
2422 echo -en "..."
2423 old_pwd=`pwd`
2424 cd "$mountpoint"
2425
2426 # Check whether /lib64 or /lib or /sbin or /bin is a link and if so explicitly create one in rootfs (Fedora 17 crazyness)
2427 for d in bin sbin lib lib64; do
2428 if [ -h "/$d" ]; then
2429 thelink=`readlink /$d`
2430 mkdir -p $mountpoint/$thelink || LogIt "ERROR: Unable to create $thelink in $mountpoint."
2431 mv $mountpoint/$d/* $mountpoint/$d/.??* $mountpoint/$thelink 2> /dev/null
2432 if [ -d "$mountpoint/$d" -a ! -h "$mountpoint/$d" ]; then
2433 rmdir $mountpoint/$d
2434 fi
2435 if [ ! -h $mountpoint/$d ]; then
2436 rm -f $mountpoint/$d 2> /dev/null
2437 (cd $mountpoint ; ln -s $thelink $d) || LogIt "ERROR: /$d is a symbolic link, but I couldn't create it in $mountpoint."
2438 fi
2439 fi
2440 done
2441 LogFile "INFO: what is now in $mountpoint"
2442 ls -alR $mountpoint >> $LOGFILE
2443
2444 # Check files before copying to discover configuration issues or McAfee preventing mindi reading these files
2445 for f in $tgz_dir_fname/*; do
2446 if [ ! -r $f ]; then
2447 Die "ERROR: Unable to copy $f to the target dir. Check your installation or McAfee presence"
2448 else
2449 cp -Rdf $f . 2>&1 >> $LOGFILE
2450 fi
2451 done
2452 (cd etc ; ln -sf bashrc profile ; ln -sf bashrc shrc ; ln -sf ../proc/mounts mtab ; ln -sf ../usr/sbin/init linuxrc)
2453 ln -sf usr/sbin/init linuxrc
2454
2455 cd dev || Die "Can't cd to dev"
2456 tar -zxf dev-entries.tgz || Die "Cannot untar dev-entries.tgz"
2457 rm -f dev-entries.tgz
2458 cd ..
2459
2460 for w in insmod.static insmod.static.old ; do
2461 s=`which $w 2> /dev/null`
2462 if [ -e "$s" ] ; then
2463 tar cf - -C / $s 2> /dev/null | tar xf -
2464 fi
2465 done
2466
2467 [ -e "/dev/.devfsd" ] && echo "/dev/.devfsd found" > tmp/USE-DEVFS
2468
2469 # Copy of files mandatory for ssh to automate mount if sshfs is used
2470 mkdir $mountpoint/.ssh $mountpoint/tmp
2471 cp -a ~root/.ssh/* $mountpoint/.ssh 2> /dev/null
2472 cat > $mountpoint/tmp/myssh << EOF
2473ssh -o StrictHostKeyChecking=no $*
2474EOF
2475 chmod 755 $mountpoint/tmp/myssh
2476
2477 # Copy of files mandatory for ld.so
2478 cp -a /etc/ld.so.c* $mountpoint/etc
2479
2480 # Handle the case where busybox and mount are dynamically linked
2481 file $MINDI_LIB/rootfs/usr/bin/busybox 2>&1 | grep -q "dynamically"
2482 if [ $? -eq 0 ]; then
2483 # We want to use the real mount and all the supported variants (nfs, cifs, ...)
2484 rm -f bin/mount
2485 fi
2486
2487 # Copy of files from the minimal env needed as per the deplist.d/minimal.conf & udev.conf file (which includes all busybox deps)
2488 rm -f $MINDI_TMP/minimal.lis $MINDI_TMP/minimal2.lis
2489 for f in `cat $DEPLIST_DIR/minimal.conf $DEPLIST_DIR/udev.conf | grep -vE " *#.*|^#" | sort -u` ; do
2490 if [ -d $f ]; then
2491 for g in `find $f`; do
2492 echo $g >> $MINDI_TMP/minimal.lis
2493 LocateDeps $g >> $MINDI_TMP/minimal2.lis
2494 done
2495 else
2496 if [ -r $f ]; then
2497 echo $f >> $MINDI_TMP/minimal.lis
2498 LocateDeps $f >> $MINDI_TMP/minimal2.lis
2499 fi
2500 fi
2501 done
2502 for f in `cat $MINDI_TMP/minimal.lis` `sort -u $MINDI_TMP/minimal2.lis`; do
2503 mr-read-all-link $f >> $MINDI_TMP/minimal.lis
2504 done
2505 # Initial / are trucated by tar
2506 finallist=""
2507 # Remove directories from the list, as tar/cp will create them anyway
2508 # and it may hurt if /lib is in it as on Debian/Ubuntu
2509 # recent bash says that -d is true for a link to a dir !
2510 for f in `sort -u $MINDI_TMP/minimal.lis`; do
2511 if [ -e $f -a ! -d $f ] || [ -h $f ]; then
2512 finallist="$finallist $f"
2513 fi
2514 done
2515 #tar cf - $finallist 2>> $MINDI_TMP/$$.log | tar xf - || LogIt "WARNING: Problem in minimal analysis" $MINDI_TMP/$$.log
2516 echo "cp -a -n --parents $finallist -t $mountpoint" 2>&1 >> $MINDI_TMP/$$.log
2517 cp -a -n --parents $finallist -t $mountpoint 2>> $MINDI_TMP/$$.log || LogIt "WARNING: Problem in minimal analysis" $MINDI_TMP/$$.log
2518
2519 # To improve support for distribution scripts, we now prefer to use bash as the std shell. Also fixes #600
2520 ln -sf /bin/bash bin/sh
2521 LogIt "INFO: Using bash as default shell"
2522 rm -f $MINDI_TMP/minimal.lis $MINDI_TMP/minimal2.lis
2523
2524 # Avoids an issue on some distro (RHEL5)
2525 rm -f $mountpoint/etc/ld.so.conf.d/kernelcap*
2526
2527 mkdir -p $mountpoint/tmp
2528 # Management of udev (which includes modprobe in rules)
2529 ps auxww | grep -v grep | grep -qw udevd
2530 if [ $? -eq 0 ]; then
2531 echo "udev device manager found" > $mountpoint/tmp/USE-UDEV
2532 LogIt "INFO: udev device manager found"
2533 tar cf - -C / /etc/udev 2>> $MINDI_TMP/$$.log | tar xf - || LogIt "ERROR: Problem in /etc/udev analysis" $MINDI_TMP/$$.log
2534 # This avoids NIC remapping if on another machine at restore time on Debian/Ubuntu at least
2535 rm -f ./etc/udev/rules.d/[z]*[0-9][0-9][-_]persistent-net.rules
2536 # Do not do it if it's a link (Ubuntu 64 bits #503)
2537 if [ -e "/lib64/udev" ] && [ ! -h "/lib64" ] && [ ! -h "/lib64/udev" ]; then
2538 tar cf - -C / /lib64/udev 2>> $MINDI_TMP/$$.log | tar xf - || LogIt "ERROR: Problem in /lib64/udev analysis" $MINDI_TMP/$$.log
2539 fi
2540 if [ -e "/lib32/udev" ] && [ ! -h "/lib32" ] && [ ! -h "/lib32/udev" ]; then
2541 tar cf - -C / /lib32/udev 2>> $MINDI_TMP/$$.log | tar xf - || LogIt "ERROR: Problem in /lib32/udev analysis" $MINDI_TMP/$$.log
2542 fi
2543 if [ -e "/lib/udev" ] && [ ! -h "/lib" ] && [ ! -h "/lib/udev" ]; then
2544 tar cf - -C / /lib/udev 2>> $MINDI_TMP/$$.log | tar xf - || LogIt "ERROR: Problem in /lib/udev analysis" $MINDI_TMP/$$.log
2545 fi
2546 if [ -e "/usr/lib/udev" ] && [ ! -h "/usr/lib" ] && [ ! -h "/usr/lib/udev" ]; then
2547 tar cf - -C / /usr/lib/udev 2>> $MINDI_TMP/$$.log | tar xf - || LogIt "ERROR: Problem in /usr/lib/udev analysis" $MINDI_TMP/$$.log
2548 fi
2549 if [ -x /sbin/udevd ] || [ -x /usr/bin/udevd ] || [ -x /usr/lib/systemd/systemd-udevd ]; then
2550 lis2=`grep -Ev '^#' $DEPLIST_DIR/udev.conf`
2551 lis=""
2552 # Get only the files which exist in that list
2553 # and potentially their symlink structure
2554 for i in $lis2; do
2555 if [ -h $i ]; then
2556 j=$i
2557 while [ -h $j ]; do
2558 lis="$lis $j"
2559 j=`readlink -f $j`
2560 done
2561 lis="$lis $j"
2562 elif [ -f $i ]; then
2563 lis="$lis $i"
2564 fi
2565 done
2566 # And their deps
2567 LocateDeps $lis > $MINDI_TMP/udev.lis
2568 for i in $lis; do
2569 if [ "`echo $i | cut -c1`" = "/" ]; then
2570 j=`echo $i | cut -c2-`
2571 [ "$j" != "" ] && rm -f $j
2572 fi
2573 echo "$i" >> $MINDI_TMP/udev.lis
2574 done
2575 finallist=""
2576 # Remove directories from the list, as tar/cp will create them anyway
2577 # and it may hurt if /lib is in it as on Debian/Ubuntu
2578 # recent bash says that -d is true for a link to a dir !
2579 for f in `sort -u $MINDI_TMP/udev.lis`; do
2580 if [ -e $f -a ! -d $f ] || [ -h $f ]; then
2581 finallist="$finallist $f"
2582 fi
2583 done
2584 #tar cf - -C / $lis `sort -u $MINDI_TMP/udev.lis` 2>> $MINDI_TMP/$$.log | tar xf - || LogIt "ERROR: Problem in udev.lis analysis" $MINDI_TMP/$$.log
2585 echo "cp -a -n --parents $finallist -t $mountpoint/" 2>&1 >> $MINDI_TMP/$$.log
2586 cp -a -n --parents $finallist -t $mountpoint/ 2>> $MINDI_TMP/$$.log || LogIt "ERROR: Problem in udev.lis analysis" $MINDI_TMP/$$.log
2587 rm -f $MINDI_TMP/udev.lis
2588 else
2589 LogAll "WARNING: udevd daemon not in standard place (/sbin or /usr/bin)"
2590 LogAll " mindi will use static devices which may cause problems"
2591 rm -f $mountpoint/tmp/USE-UDEV
2592 fi
2593 fi
2594
2595 # Management of potential HW info (ProLiant only at the moment)
2596 rm -rf $MINDI_CACHE/bkphw
2597 mindi-bkphw $MINDI_CACHE $MINDI_CONF | tee -a $LOGFILE
2598 if [ -d $MINDI_CACHE/bkphw ]; then
2599 LogIt "INFO: Hardware Information found and saved ..."
2600 cp -rp $MINDI_CACHE/bkphw .
2601 if [ -f $MINDI_CACHE/tools.files ]; then
2602 lis=`grep -Ev '^#' $MINDI_CACHE/tools.files`
2603 LocateDeps $lis > $MINDI_TMP/tools.lis
2604 tar cf - $lis `sort -u $MINDI_TMP/tools.lis` 2>> $MINDI_TMP/$$.log | tar xf - || LogIt "ERROR: Problem in tools.lis analysis" $MINDI_TMP/$$.log
2605 fi
2606 if [ -f $MINDI_CACHE/mindi-rsthw ]; then
2607 mv -f $MINDI_CACHE/mindi-rsthw .
2608 chmod 755 ./mindi-rsthw
2609 fi
2610 rm -f $MINDI_TMP/tools.lis $MINDI_CACHE/tools.files
2611 fi
2612
2613 # Management of perl scripts delivered needed at restore time
2614 mindi-get-perl-modules `cat $MINDI_CONF/perl-scripts` /usr/bin/mr-* > $MINDI_TMP/perl.lis
2615 tar cf - `cat $MINDI_TMP/perl.lis` 2>> $MINDI_TMP/$$.log | tar xf - || LogIt "ERROR: Problem in perl scripts analysis" $MINDI_TMP/$$.log
2616
2617 for w in cdrom groovy-stuff ; do
2618 mkdir -p mnt/$w
2619 done
2620
2621 tar cf - -C / /dev/fd0*[1,2][4,7,8]* 2>> $MINDI_TMP/$$.log | tar xf - || LogIt "ERROR: Problem in fd dev analysis" $MINDI_TMP/$$.log
2622
2623 echo -en "..."
2624 cd /
2625
2626 needed_modules=""
2627 list_of_groovy_mods="$CDROM_MODS $FORCE_MODS"
2628
2629 if [ -e "$MINDI_TMP/NETFS-SERVER-MOUNT" ] ; then
2630 # For PXE boot
2631 list_of_groovy_mods="$list_of_groovy_mods $NET_MODS"
2632 fi
2633 if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ "$USBDEVICE" != "" ]; then
2634 list_of_groovy_mods="$list_of_groovy_mods $EXTRA_MODS"
2635 fi
2636 for i in $DENY_MODS; do
2637 LogFile "INFO: Removing $i from the list of modules to load"
2638 list_of_groovy_mods=`echo ${list_of_groovy_mods} | tr ' ' '\n' | grep -Ev "^${i}$" | tr '\n' ' '`
2639 done
2640
2641 if [ "${kernelname}" != "" ]; then
2642 needed_modules_path=lib/modules/${kernelname}
2643 mkgmopt="-k ${kernelname}"
2644 else
2645 needed_modules_path=lib/modules/$KERVERRUN
2646 mkgmopt="-k $KERVERRUN"
2647 fi
2648
2649 [ -e "$needed_modules_path" ] || LogIt "WARNING: path $needed_modules_path does not exist.\n If you're not using a modular kernel then mindi won't probably work."
2650 needed_modules=`mr-kernel-get-modules $mkgmopt $list_of_groovy_mods`
2651
2652 LogFile "INFO: Adding $needed_modules to the rootfs with $mkgmopt"
2653 cp --parents -aL $needed_modules $mountpoint/ 2>> $MINDI_TMP/$$.log || LogIt "ERROR: Unable to copy modules to $mountpoint" $MINDI_TMP/$$.log
2654
2655 # Uncompress modules if not using udev and native modprobe
2656 if [ ! -f $mountpoint/tmp/USE-UDEV ]; then
2657 for i in $needed_modules; do
2658 if [ "`echo "$i" | grep -E ".gz$"`" ]; then
2659 gunzip -f $mountpoint/$i
2660 fi
2661 if [ "`echo "$i" | grep -E ".bz$"`" ]; then
2662 bunzip2 -f $mountpoint/$i
2663 fi
2664 if [ "`echo "$i" | grep -E ".xz$"`" ]; then
2665 unxz -f $mountpoint/$i
2666 fi
2667 LogFile "INFO: Uncompressing $i"
2668 done
2669 fi
2670
2671 # Also copy modules.* in case of udev so that normal modprobe works
2672 tar cf - -C / /$needed_modules_path/modules.* 2>> $MINDI_TMP/$$.log | (cd "$mountpoint" ; tar xf -) || LogIt "ERROR: Unable to copy modules.* to $mountpoint" $MINDI_TMP/$$.log
2673
2674 # Copy FW in case some drivers needs it
2675 for d in "/lib" "/usr/lib"; do
2676 if [ -d "$d/firmware" -a ! -h $d ]; then
2677 cp -a "$d/firmware" "$mountpoint/$d"
2678 fi
2679 done
2680
2681 # Copy multipath dynamic libraries in case multipath is used (RHEL 6.4 and later)
2682 for d in "/lib" "/usr/lib" "/lib64" "/usr/lib64"; do
2683 if [ -d "$d/multipath" -a ! -h $d ]; then
2684 cp -a "$d/multipath" "$mountpoint/$d"
2685 fi
2686 done
2687
2688 # Copy an additional ProLiant tool for OBDR support
2689 if [ -f $MINDI_TMP/OBDR ]; then
2690 found=0
2691 if [ -x /usr/bin/hpsa_obdr_mode ]; then
2692 mkdir -p $mountpoint/usr/bin
2693 cp -a /usr/bin/hpsa_obdr_mode $mountpoint/usr/bin
2694 LogIt "INFO: Copying /usr/bin/hpsa_obdr_mode to ramdisk for improved Smart Array OBDR support"
2695 found=1
2696 fi
2697 if [ -x /usr/bin/sg_wr_mode ]; then
2698 mkdir -p $mountpoint/usr/bin
2699 lis="/usr/bin/sg_map /usr/bin/sg_inq /usr/bin/sg_reset /usr/bin/rev"
2700 LocateDeps $lis > $MINDI_TMP/obdr.lis
2701 (cd $mountpoint ; tar cf - $lis -C / `sort -u $MINDI_TMP/obdr.lis` 2>> $MINDI_TMP/$$.log | tar xf - || LogIt "ERROR: Problem in obdr.lis analysis" $MINDI_TMP/$$.log)
2702 LogIt "INFO: Copying /usr/bin/sg_reset to ramdisk for improved SCSI OBDR support"
2703 found=1
2704 fi
2705 if [ $found -eq 0 ]; then
2706 LogAll "WARNING: You're using OBDR mode without having the /usr/bin/hpsa_obdr_mode nor the /usr/bin/sg_wr_mode tool"
2707 LogAll " This may lead to a tape not going back to sequential mode after OBDR boot"
2708 fi
2709 fi
2710
2711 if [ ! -e "/sbin/devfsd" ] || [ "$kernelpath" = "$MINDI_LIB/vmlinuz" ] ; then
2712 LogFile "INFO: Deleting devfsd daemon from ramdisk"
2713 [ ! -e "/sbin/devfsd" ] && LogFile " ...because /sbin/devfsd not found"
2714 rm -f $mountpoint/sbin/devfsd
2715 fi
2716 cd "$old_pwd"
2717 [ "$TAPEDEV" ] && echo -en "$TAPEDEV" > $mountpoint/tmp/TAPEDEV-LIVES-HERE
2718 if [ _"$MONDO_SHARE" != _"" ]; then
2719 MakeMondoConfigFile $mountpoint/tmp/$MRCFG
2720 cp -f $mountpoint/tmp/$MRCFG $MINDI_TMP 2>> $LOGFILE || Die "Cannot copy $MRCFG to ramdisk"
2721 cp -f $MINDI_TMP/mountlist.txt $mountpoint/tmp/ 2>> $LOGFILE || Die "Cannot copy mountlist to ramdisk"
2722 echo -en "$FILES_IN_FILELIST" > $mountpoint/tmp/FILES-IN-FILELIST
2723 echo -en "$LAST_FILELIST_NUMBER" > $mountpoint/tmp/LAST-FILELIST-NUMBER
2724 fi
2725 mkdir -p $mountpoint/proc
2726 LogFile "---------------------------"
2727 LogFile "Content of initial ramdisk:"
2728 LogFile "---------------------------"
2729 (cd "$mountpoint" ; ls -Rla ) >> $LOGFILE
2730 LogFile "---------------------------"
2731
2732 # Determine what filesystem to use for initrd image
2733 LogFile "INFO: Call GetInitrdFilesystemToUse() with parameter ${kernelpath} to get filesystem to use for initrd."
2734 gvFileSystem=`GetInitrdFilesystemToUse ${kernelpath}`
2735 [ -z gvFileSystem ] && Die "GetFilesystemToUse() failed. Terminating."
2736 if [ "$gvFileSystem" = "ext2fs" ] || [ "$gvFileSystem" = "ext3fs" ] || [ "$gvFileSystem" = "ext4fs" ]; then
2737 # say what will be used
2738 LogFile "INFO: Creating an $gvFileSystem initrd image..."
2739 # kernel expects linuxrc in ext2 filesystem
2740 ( cd "$mountpoint" && ln -sf usr/sbin/init linuxrc )
2741 # unmount loop filesystem and create image file using the standard approach
2742 umount $mountpoint || Die "Cannot unmount $tempfile"
2743 dd if=$tempfile bs=1k 2> /dev/null > ${rdz_fname}.tmp 2> /dev/null
2744 if [ "$gvFileSystem" = "ext4fs" ] && [ -x "/sbin/tune4fs" ]; then
2745 bs=`/sbin/tune4fs -l ${rdz_fname}.tmp | grep -E '^Block size:' | cut -d: -f2 | sed 's/^ *//'`
2746 else
2747 bs=`tune2fs -l ${rdz_fname}.tmp | grep -E '^Block size:' | cut -d: -f2 | sed 's/^ *//'`
2748 fi
2749 MINDI_ADDITIONAL_BOOT_PARAMS="$MINDI_ADDITIONAL_BOOT_PARAMS ramdisk_blocksize=$bs"
2750 gzip -c9 ${rdz_fname}.tmp > $rdz_fname
2751 rm -f ${rdz_fname}.tmp
2752 # log that we are done
2753 LogFile " ...done."
2754 elif [ "$gvFileSystem" = "initramfs" ]; then
2755 # say what will be used
2756 LogFile "INFO: Creating a gzip'ed cpio (AKA initramfs) initrd image..."
2757 # make sure that cpio is there
2758 which cpio &> /dev/null; [ $? -eq 0 ] || Die "cpio not found. Please install package cpio and try again."
2759 # go into filesystem
2760 cd "$mountpoint"
2761 # kernel expects init in cpio filesystem
2762 ln -sf sbin/init init
2763 # create cpio image file and unmount loop filesystem
2764 find . -print | cpio -o -H newc | gzip -9 > $rdz_fname 2> /dev/null
2765 cd "$old_pwd"
2766 umount $mountpoint || Die "Cannot unmount $tempfile"
2767 # log that we are done
2768 LogFile " ...done."
2769 else
2770 Die "Filesystem $gvFileSystem not supported for initrd image. Terminating."
2771 fi
2772
2773 if [ "$res" -eq "0" ] ; then
2774 echo -en "..."
2775 else
2776 echo -en "\rMade an rdz WITH ERRORS. \n"
2777 fi
2778 return 0
2779}
2780
2781
2782##############################################################################
2783#----------------------------------- Main -----------------------------------#
2784##############################################################################
2785
2786# Now we can create what we need
2787mkdir -p $MINDI_TMP
2788
2789# Purge from potential old run
2790if [ _"$MINDI_CACHE" = _"" ]; then
2791 Die "MINDI_CACHE undefined"
2792fi
2793
2794# --nolog needs to be first, and is used in analyze-my-lvm
2795if [ "$1" = "--nolog" ] ; then
2796 shift
2797 LOGFILE=/dev/stderr
2798else
2799 > $LOGFILE
2800fi
2801if [ "$1" = "--printvar" ] ; then
2802 shift
2803 if [ _"$1" != _"" ] ; then
2804 set | grep -Ew "^$1" | cut -d= -f2
2805 fi
2806 exit 0
2807fi
2808
2809LogFile "mindi v$MINDI_VERSION"
2810LogFile "$ARCH architecture detected"
2811LogFile "mindi called with the following arguments:"
2812echo "$@">> $LOGFILE
2813LogFile "Start date : `date`"
2814LogFile "-----------------------------"
2815
2816[ -e "/sbin/mkdosfs" ] && [ ! -e "/sbin/mkfs.vfat" ] && LogAll "/sbin/mkfs.vfat is missing!"
2817
2818# Log some capital variables
2819[ "$MINDI_PREFIX" = "XXX" ] && Die "Mindi has not been installed correctly."
2820[ "$MINDI_CONF" = "YYY" ] && Die "Mindi has not been installed correctly."
2821LogFile "MONDO_SHARE = $MONDO_SHARE"
2822LogFile "MINDI_LIB = $MINDI_LIB"
2823LogFile "MINDI_SBIN = $MINDI_SBIN"
2824LogFile "MINDI_CONF = $MINDI_CONF"
2825if [ -f $MINDI_CONFIG ]; then
2826 LogFile "-----------------------------"
2827 LogFile " Mindi configuration file "
2828 LogFile "-----------------------------"
2829 grep -Ev '^#' $MINDI_CONFIG >> $LOGFILE
2830 LogFile "-----------------------------"
2831fi
2832LogFile "In Mindi"
2833LogFile "--------"
2834LogFile "EXTRA_SPACE = $EXTRA_SPACE"
2835LogFile "BOOT_SIZE = $BOOT_SIZE"
2836LogFile "--------"
2837
2838trap AbortHere SIGTERM SIGHUP SIGQUIT SIGKILL SIGABRT SIGINT
2839
2840# Sanity checks
2841which which > /dev/null 2> /dev/null || Die "Please install 'which'."
2842which strings > /dev/null 2> /dev/null || Die "Please install binutils and libbinutils; you have no 'strings' executable."
2843which gawk > /dev/null 2> /dev/null || Die "Gawk is missing from your computer. Please install gawk. You may find the package on Debian's website. How did I know you're running Debian? Because only Debian would be stupid enough not to include gawk in your distribution."
2844which gawk > /dev/null 2> /dev/null && AWK=`which gawk 2>/dev/null` || AWK="`which awk 2>/dev/null`"
2845if which awk &> /dev/null ; then
2846 if ! which gawk &> /dev/null ; then
2847 LogIt "INFO: You have awk but not gawk.\nPlease note that mindi works fine with a _sane_ awk binary.\nIf your awk binary misbehaves then please contact your vendor\nor distribution's mailing list for technical support.\n"
2848 fi
2849fi
2850which mke2fs > /dev/null 2> /dev/null || Die "Please put mke2fs in system path"
2851[ ! -e "$FDISK" ] && Die "Cannot find $FDISK"
2852
2853[ "`echo $KERVERRUN | grep -E "2\.4\.[0-6]" | grep -vE "2\.4\.[0-9][0-9]"`" != "" ] && echo "WARNING! Your kernel may have buggy loopfs code. Consider upgrading to 2.4.7"
2854
2855# Update the PATH variable if incomplete
2856if [ -e "/sbin/mkfs" ] && ! which mkfs &> /dev/null ; then
2857 PATH=$PATH:/sbin:/usr/sbin
2858 export PATH
2859 LogFile "INFO: Your PATH did not include /sbin or /usr/sbin. I have fixed that, temporarily."
2860 LogFile "INFO: However, you may wish to ask your vendor to provide a permanent fix..."
2861 LogFile "INFO: Or you might like to call 'su -' instead of 'su', for example."
2862fi
2863
2864if ! which mkfs.vfat 1> /dev/null 2> /dev/null ; then
2865 Die "mkfs.vfat missing from your filesystem - please install your dosfstools RPM or DEB package. Perhaps your PATH environmental variable is broken, too?"
2866fi
2867
2868### TODO
2869### Fix as it's not mandatory on ia64
2870if [ "$ARCH" = "ia64" ] ; then
2871 if which elilo &> /dev/null ; then
2872 LILO_EXE=elilo
2873 else
2874 LILO_EXE=`which false 2> /dev/null`
2875 fi
2876else
2877 FindIsolinuxBinary
2878fi
2879trap "Aborted" SIGTERM
2880DONE="\r\t\t\t\t\t\t\t\tDone. "
2881kernelpath=""
2882MONDO_ROOT=/var/cache/mondo
2883mkdir -p $MONDO_ROOT
2884
2885if [ -d "/proc/lvm" ]; then
2886 # LVM v1
2887 LVMCMD=""
2888 LVM="v1"
2889elif [ -d "/dev/mapper" ]; then
2890 # LVM v2
2891 LVMCMD="lvm"
2892 LVM="v2"
2893else
2894 LVM="false"
2895fi
2896
2897if [ -e "/proc/cmdline" ]; then
2898 CMDLINE="/proc/cmdline"
2899elif [ -e "/tmp/cmdline" ]; then
2900 CMDLINE="/tmp/cmdline"
2901else
2902 CMDLINE="/dev/null"
2903fi
2904
2905LogFile "INFO: LVM set to $LVM"
2906LogFile "----------"
2907LogFile "mount result:"
2908LogFile "-------------"
2909mount >> $LOGFILE
2910if [ -e /etc/raidtab ]; then
2911 LogFile "-------------"
2912 LogFile "/etc/raidtab content:"
2913 LogFile "-------------"
2914 cat /etc/raidtab >> $LOGFILE
2915else
2916 LogFile "No file /etc/raidtab"
2917fi
2918if [ -e /etc/mdadm.conf ]; then
2919 LogFile "-------------"
2920 LogFile "/etc/mdadm.conf content:"
2921 LogFile "-------------"
2922 cat /etc/mdadm.conf >> $LOGFILE
2923else
2924 LogFile "-------------"
2925 LogFile "No file /etc/mdadm.conf"
2926fi
2927LogFile "-------------"
2928LogFile "cat $CMDLINE"
2929LogFile "-------------"
2930cat $CMDLINE >> $LOGFILE
2931LogFile "-------------"
2932LogFile "cat /proc/swaps:"
2933LogFile "-------------"
2934cat /proc/swaps >> $LOGFILE
2935LogFile "-------------"
2936if [ -e /proc/mdstat ]; then
2937 LogFile "cat /proc/mdstat:"
2938 LogFile "-------------"
2939 cat /proc/mdstat >> $LOGFILE
2940else
2941 LogFile "No pseudo file /proc/mdstat"
2942fi
2943LogFile "-------------"
2944LogFile "cat /proc/partitions:"
2945LogFile "-------------"
2946cat /proc/partitions >> $LOGFILE
2947LogFile "-------------"
2948LogFile "cat /proc/filesystems:"
2949LogFile "-------------"
2950cat /proc/filesystems >> $LOGFILE
2951LogFile "-------------"
2952LogFile "lsmod result:"
2953LogFile "-------------"
2954lsmod >> $LOGFILE
2955MODULES="`cat /proc/modules | $AWK '{print $1}'`"
2956if [ -x /usr/sbin/esxcfg-module ]; then
2957 LogFile "-------------"
2958 LogFile "INFO: VMWare ESX server detected - Enabling dedicated support"
2959 LogFile "-------------"
2960 LogFile "VMWare modules"
2961 LogFile "-------------"
2962 /usr/sbin/esxcfg-module -l >> $LOGFILE
2963 MODULES="$MODULES `/usr/sbin/esxcfg-module -l | $AWK '{print $1}'`"
2964fi
2965LogFile "-------------"
2966LogFile "FORCE_MODS:"
2967LogFile "-------------"
2968LogFile "$FORCE_MODS"
2969LogFile "-------------"
2970LogFile "DENY_MODS:"
2971LogFile "-------------"
2972LogFile "$DENY_MODS"
2973LogFile "-------------"
2974LogFile "df result:"
2975LogFile "----------"
2976df -aT >> $LOGFILE
2977LogFile "-------------"
2978LogFile "df -i result:"
2979LogFile "----------"
2980df -i >> $LOGFILE
2981LogFile "-------------"
2982if [ -r /boot/grub/menu.lst ]; then
2983 LogFile "-------------"
2984 LogFile "INFO: /boot/grub/menu.lst content"
2985 LogFile "-------------"
2986 cat /boot/grub/menu.lst >> $LOGFILE
2987 LogFile "-------------"
2988fi
2989if [ -r /boot/grub/grub.conf ]; then
2990 LogFile "-------------"
2991 LogFile "INFO: /boot/grub/grub.conf content"
2992 LogFile "-------------"
2993 cat /boot/grub/grub.conf >> $LOGFILE
2994 LogFile "-------------"
2995fi
2996if [ -r /boot/grub/grub.cfg ]; then
2997 LogFile "-------------"
2998 LogFile "INFO: /boot/grub/grub.cfg content"
2999 LogFile "-------------"
3000 cat /boot/grub/grub.cfg >> $LOGFILE
3001 LogFile "-------------"
3002fi
3003if [ -r /boot/grub/device.map ]; then
3004 LogFile "-------------"
3005 LogFile "INFO: /boot/grub/device.map content"
3006 LogFile "-------------"
3007 cat /boot/grub/device.map >> $LOGFILE
3008 LogFile "-------------"
3009fi
3010if [ -r /etc/lilo.conf ]; then
3011 LogFile "-------------"
3012 LogFile "INFO: /etc/lilo.conf content"
3013 LogFile "-------------"
3014 cat /etc/lilo.conf >> $LOGFILE
3015fi
3016LogFile "Full fdisk info"
3017LogFile "---------------"
3018$FDISK -l >> $LOGFILE
3019LogFile "----------------"
3020LogFile "List of extra modules is:"
3021LogFile "$EXTRA_MODS"
3022LogFile "-------------"
3023
3024# Compute libata version
3025laver=`modinfo libata 2> /dev/null | grep -Ei '^Version:' | cut -d: -f2 | cut -d. -f1 | sed 's/ *//g' 2> /dev/null`
3026# If libata v2 is used then remove ide-generic as it will perturbate boot
3027if [ "`echo $MODULES | grep libata`" ]; then
3028 if [ "$laver" = "2" ]; then
3029 DENY_MODS="$DENY_MODS ide-generic"
3030 LogFile "INFO: ide-generic removed from module list as your system uses libata v2+"
3031 LogFile "-------------"
3032 fi
3033fi
3034
3035# Check for McAfee which disturbs the access to some files (tgz in articular)
3036if [ "x`cat /proc/linuxshield/enabled 2>/dev/null`" = "x1" ]; then
3037 LogFile "WARNING: McAfee LinuxShield is enabled. McAfee might block access to certain special files."
3038 LogFile "WARNING: Check in /var/opt/NAI/LinuxShield/etc/nailsd.cfg for 'nailsd.profile.OAS.action.error: Block'"
3039 LogFile "WARNING: You have two options:"
3040 LogFile "WARNING: - Exclude all directories with special files (check McAfee System Events Log)"
3041 LogFile "WARNING: - Disable the scanner during the backup"
3042fi
3043
3044# Check for ISO_CMD command
3045if [ ! -x $ISO_CMD ]; then
3046 LogFile "NOTE: No CD image (ISO file) utility found"
3047fi
3048
3049FLOPPY_WAS_MOUNTED=""
3050for mtpt in /media/floppy /mnt/floppy /floppy ; do
3051 if mount | grep -w $mtpt &> /dev/null ; then
3052 FLOPPY_WAS_MOUNTED="$FLOPPY_WAS_MOUNTED $mtpt"
3053 umount $mtpt
3054 fi
3055done
3056
3057#
3058# If we have a USB device we need to store info
3059# and remove it from the parameters line
3060#
3061if [ "$#" -ne "0" ] ; then
3062 if [ "$1" = "--usb" ] ; then
3063 shift
3064 USBDEVICE=$1
3065 if [ _"$USBDEVICE" = _"" ]; then
3066 Die "No USB device specified"
3067 fi
3068 shift
3069 fi
3070fi
3071
3072if [ "$#" -ne "0" ] ; then
3073 if [ "$1" = "--findkernel" ] ; then
3074 resk=`TryToFindKernelPath`
3075 # Avoids logfile content for mondo
3076 export MONDO_SHARE=""
3077 if [ "$resk" = "" ] ; then
3078 if [ $KERNEL_IS_XEN = "yes" ]; then
3079 echo "$xenkernelpath"
3080 LogFile "INFO: xenkernelpath = $xenkernelpath"
3081 MindiExit 0
3082 else
3083 MindiExit -1
3084 fi
3085 else
3086 echo "$resk"
3087 LogFile "INFO: kernelpath = $resk"
3088 MindiExit 0
3089 fi
3090 elif [ "$1" = "--locatedeps" ] ; then
3091 [ ! "$2" ] && Die "Please specify the binary to look at"
3092 LocateDeps $*
3093 # Avoids logfile content for mondo
3094 export MONDO_SHARE=""
3095 MindiExit $?
3096 elif [ "$1" = "--readalllink" ] ; then
3097 [ ! "$2" ] && Die "Please specify the binary to look at"
3098 # Avoids logfile content for mondo
3099 export MONDO_SHARE=""
3100 mr-read-all-link $2
3101 MindiExit $?
3102 elif [ "$1" = "--makemessage" ] ; then
3103 MakeMessageFile | cut -c1-80
3104 MindiExit 0
3105 elif [ "$1" = "--makemountlist" ] ; then
3106 [ ! "$2" ] && Die "Please specify the output file"
3107 MakeMountlist $2
3108 CheckMountlist $2
3109 # Avoids logfile content for mondo
3110 export MONDO_SHARE=""
3111 MindiExit $?
3112 elif [ "$1" = "-V" ] || [ "$1" = "-v" ] || [ "$1" = "--version" ] || [ "$1" = "-version" ] ; then
3113 echo "Mindi v$MINDI_VERSION"
3114 # Avoids logfile content for mondo
3115 export MONDO_SHARE=""
3116 MindiExit 0
3117 elif [ "$#" -ge "9" ] && [ "$1" = "--custom" ] ; then
3118 MONDO_TMP=$2
3119 # Change MINDI_TMP for the one provided by mondo
3120 # So that it can get back the built files
3121 if [ _"$MONDO_TMP" = _"" ]; then
3122 Die "MONDO_TMP is empty, aborting"
3123 fi
3124 if [ _"$MONDO_TMP" = _"/" ]; then
3125 Die "MONDO_TMP is /, aborting"
3126 fi
3127 mv $MINDI_TMP/* $MINDI_TMP/.??* $MONDO_TMP 2>> $LOGFILE
3128 rmdir $MINDI_TMP
3129 export MINDI_TMP=$MONDO_TMP
3130 mkdir -p $MINDI_TMP
3131
3132 # This is the scratch dir in mondo - subdir images
3133 MINDI_CACHE=$3
3134
3135 kernelpath=$4; [ "$kernelpath" = "(null)" ] && kernelpath=""
3136 [ "$kernelpath" = "" ] && kernelpath=`TryToFindKernelPath`
3137
3138###
3139### Sq-Modification...
3140### Attempt to locate kernel specific module path
3141### if module path is found then use it other wise use uname -r to set it...
3142###
3143 if [ $KERNEL_IS_XEN = "yes" ]; then
3144 LogAll "INFO: xenkernelpath = $xenkernelpath"
3145 fi
3146 kernelname=`echo $kernelpath | cut -d'-' -f2- | sed 's/.[bg]z[2]*$//'`
3147 if [ ! -d "/lib/modules/$kernelname" ]; then
3148 LogAll "WARNING: Module path for ${kernelpath} not found..."
3149 LogAll " using running kernel\'s modules."
3150 kernelname=$KERVERRUN
3151 else
3152 LogAll "Using modules for kernel: ${kernelname}"
3153 fi
3154 LogAll "INFO: kernelname = $kernelname"
3155 LogAll "INFO: kernelpath = $kernelpath"
3156###
3157### end of Sq-Modification
3158###
3159 TAPEDEV=$5
3160 TAPESIZE=$6
3161 FILES_IN_FILELIST=$7
3162 USE_LZO=$8
3163 CDRECOVERY=$9
3164 if [ "${10}" = "(null)" ] || [ "${10}" = "" ] ; then
3165 IMAGE_DEVS=""
3166 else
3167 IMAGE_DEVS="`echo "${10}" | tr '|' ' '`"
3168 fi
3169 if [ "${11}" ] ; then
3170 LILO_OPTIONS=""
3171 # LogAll "INFO: LILO will use conservative settings, to be compatible with older BIOSes."
3172 fi
3173 LAST_FILELIST_NUMBER=${12}
3174 ESTIMATED_TOTAL_NOOF_SLICES=${13}
3175 export MINDI_EXCLUDE_DEVS="${14}"
3176 USE_COMP="${15}"
3177 USE_LILO="${16}"
3178 USE_STAR="${17}"
3179 INTERNAL_TAPE_BLOCK_SIZE="${18}"
3180 DIFFERENTIAL="${19}"
3181 USE_GZIP="${20}"
3182 NOT_BOOT="${21}"
3183 [ "$USE_COMP" = "" ] && USE_COMP=yes
3184 [ "$USE_GZIP" = "" ] && USE_GZIP=no
3185 [ "$NOT_BOOT" = "" ] && NOT_BOOT=no
3186 [ "$TAPEDEV" ] && LogIt "INFO: This is a tape-based backup. Fine."
3187 # MONDO_ROOT is the real scratchdir
3188 MONDO_ROOT=`echo $MINDI_CACHE | sed 's/\(.*\)\/.*/\1/'`
3189 if [ _"$MONDO_ROOT" != _"" ]; then
3190 mkdir -p $MONDO_ROOT
3191 else
3192 Die "MONDO_ROOT is undefined"
3193 fi
3194 else
3195 LogScreen "Syntax: mindi (--custom ....)"
3196 MindiExit -1
3197 fi
3198fi
3199
3200if [ _"$MINDI_CACHE" != _"" ]; then
3201 rm -rf $MINDI_CACHE/* 2> /dev/null
3202 mkdir -p $MINDI_CACHE
3203fi
3204
3205[ "$CDRECOVERY" = "yes" ] || CDRECOVERY=no
3206
3207if [ _"$MONDO_SHARE" = _"" ]; then
3208 LogIt "Mindi Linux mini-distro generator v$MINDI_VERSION"
3209 LogIt "Latest Mindi is available from http://www.mondorescue.org"
3210 LogIt "BusyBox sources are available from http://www.busybox.net"
3211 LogIt "------------------------------------------------------------------------------"
3212else
3213 LogFile "INFO: You are using Mindi-Linux v$MINDI_VERSION to make boot+data disks"
3214fi
3215if [ -f $MINDI_LIB/rootfs/usr/bin/busybox ]; then
3216 LogIt "Mindi-`$MINDI_LIB/rootfs/usr/bin/busybox 2>&1 | head -1`"
3217else
3218 LogIt "ERROR: Unable to find mindi-busybox, please install it"
3219 MindiExit -1
3220fi
3221
3222for i in loop cdrom ide-cd isofs linear raid0 raid1 raid5 ; do
3223 modinfo $i 2> /dev/null 1> /dev/null
3224 if [ $? -eq 0 ]; then
3225 modprobe $i 2>&1 > /dev/null
3226 fi
3227done
3228
3229KERN_DISK_MADE=""
3230
3231LogFile "DIFFERENTIAL = $DIFFERENTIAL"
3232LogFile "INTERNAL TAPE BLOCK SIZE = $INTERNAL_TAPE_BLOCK_SIZE"
3233LogFile "NOT_BOOT = '$NOT_BOOT'"
3234if [ "$NOT_BOOT" != "" ] && [ "$NOT_BOOT" != "0" ] && [ "$NOT_BOOT" != "no" ] ; then
3235 LogIt "INFO: Just creating $MRCFG and a small all.tar.gz for Mondo. Nothing else."
3236 MakeMondoConfigFile $MINDI_TMP/$MRCFG
3237 MakeMountlist $MINDI_TMP/mountlist.txt
3238 CheckMountlist $MINDI_TMP/mountlist.txt
3239 mkdir -p $MINDI_TMP/small-all/tmp
3240 cd "$MINDI_TMP/small-all"
3241 cp -f $MINDI_TMP/{mountlist.txt,$MRCFG,filelist.full.gz,biggielist.txt} tmp 2>> $LOGFILE || Die "Cannot copy small all.tar.gz"
3242 tar -cv ./tmp | gzip -9 > $MINDI_TMP/all.tar.gz 2>> $MINDI_TMP/$$.log || Die "Cannot make small all.tar.gz" $MINDI_TMP/$$.log
3243 sleep 2
3244 LogIt "Done. Exiting."
3245 MindiExit 0
3246fi
3247
3248if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ "$USBDEVICE" != "" ]; then
3249 LogIt "INFO: Including the generation of a Bootable USB device on $USBDEVICE"
3250fi
3251
3252if [ "$kernelpath" = "" ] ; then
3253 [ _"$MONDO_SHARE" != _"" ] && Die "Please use -k <path> to specify kernel."
3254 echo -en "Do you want to use your own kernel to build the boot disk ([y]/n) ?"
3255 read ch
3256 if [ "$ch" != "n" ] && [ "$ch" != "N" ] ; then
3257 USE_OWN_KERNEL="yes"
3258 else
3259 USE_OWN_KERNEL="no"
3260 fi
3261 if [ "$USE_OWN_KERNEL" = "yes" ]; then
3262 kernelpath=`TryToFindKernelPath`
3263 if [ "$kernelpath" = "" ] ; then
3264 echo -n "Please enter kernel path : "
3265 read kernelpath
3266 fi
3267 fi
3268fi
3269
3270echo -e "Mindi's temp dir = $MINDI_TMP \nMindi's output dir=$MINDI_CACHE" >> $LOGFILE
3271[ "$(($RANDOM%64))" -eq "0" ] && LogIt "INFO: Dude, I've looked inside your computer and it's really dusty..."
3272
3273mountpoint=$MINDI_TMP/mountpoint.$$
3274PrepareDataDiskImages
3275
3276ramdisk_size=$(($size_of_all_tools+$EXTRA_SPACE))
3277rds=$(($ramdisk_size-$((ramdisk_size%4096))))
3278export ramdisk_size=$rds
3279
3280LogFile "INFO: Ramdisk will be $ramdisk_size KB"
3281if [ "$ARCH" = "ia64" ] ; then
3282 PrepareBootDiskImage_LILO $kernelpath || Die "Failed to create ia64 image disk image."
3283else
3284 PrepareBootDiskImage_ISOLINUX $kernelpath || Die "Failed to create $ramdisk_size KB disk image."
3285fi
3286
3287[ -e "$MINDI_LIB/memtest.img" ] && BOOT_MEDIA_MESSAGE="$BOOT_MEDIA_MESSAGE\n\
3288...Or type 'memtest' to test your PC's RAM thoroughly.\n"
3289
3290if [ _"$MONDO_SHARE" = _"" ]; then
3291 ListImagesForUser
3292 OfferToMakeBootableISO
3293 if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ]; then
3294 OfferToMakeBootableUSB
3295 fi
3296 LogAll "Finished."
3297elif [ "$TAPEDEV" ] ; then
3298 if [ "$ARCH" != "ia64" ] ; then
3299 # We need to keep the img file as boot file for ia64 platform
3300 rm -f $MINDI_CACHE/{*img,*iso}
3301 else
3302 rm -f $MINDI_CACHE/*iso
3303 fi
3304 if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ "$USBDEVICE" != "" ]; then
3305 OfferToMakeBootableUSB
3306 fi
3307 OfferToMakeBootableISO
3308 if [ -e "$MINDI_CACHE/all.tar.gz" ] ; then
3309 cp -f $MINDI_CACHE/all.tar.gz $MINDI_TMP/ 2>> $LOGFILE
3310 else
3311 Die "Cannot find all.tar.gz, to be written to tape"
3312 fi
3313elif [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ "$USBDEVICE" != "" ]; then
3314 OfferToMakeBootableUSB
3315else
3316 OfferToMakeBootableISO
3317fi
3318# cleanup
3319LogAll "INFO: $FRIENDLY_OUTSTRING"
3320for mtpt in $FLOPPY_WAS_MOUNTED ; do
3321 mount $mtpt
3322done
3323MindiExit 0
Note: See TracBrowser for help on using the repository browser.