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

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