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

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