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

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